UNPKG
sl-bsv
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Security-enhanced BSV library with restored BSV wordlist compatibility
sl-bsv
/
test
/
basic.test.js
10 lines
(8 loc)
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
assert =
require
(
'assert'
);
const
bsv =
require
(
'../src/index.js'
);
describe
(
'BSV Fork Basic Tests'
,
() =>
{
it
(
'should export bsv module'
,
() =>
{ assert.
strictEqual
(
typeof
bsv,
'object'
); assert.
strictEqual
(
typeof
bsv.
Address
,
'function'
); }); });