UNPKG
sbgn-renderer
Version:
latest (1.1.1)
1.1.1
1.0.0
0.1.0
A library that renders SBGN
sbgn-renderer
/
test
/
test.js
10 lines
(8 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/* global describe, it */
const
expect =
require
(
'chai'
).
expect
;
describe
(
'dummy test'
,
() =>
{
it
(
'should run and not crash and not fail'
,
() =>
{
const
a =
1
;
expect
(a + a).
to
.
equal
(
2
); }); });