UNPKG
@madeindreams/erclib
Version:
latest (1.1.8)
1.1.8
1.1.6
ERC library for blockchain development
github.com/Madeindreams/erclib
Madeindreams/erclib
@madeindreams/erclib
/
test
/
index.js
12 lines
(8 loc)
•
326 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ assert, expect }
from
'chai'
import
{
ERC20
}
from
'../index.js'
describe
(
'ERC20'
,
() =>
{
it
(
'Responds with correct symbol'
,
() =>
{
var
token =
ERC20
[
1
][
"0x0000000000000000000000000000000000000000"
].
symbol
expect
(token).
to
.
be
.
an
(
'string'
).
that
.
includes
(
"ETH"
); }) })