UNPKG
boilerjuice
Version:
latest (1.0.0)
1.0.0
0.0.1
api into boilerjuice uk heating oil charts
github.com/roylines/boilerjuice
roylines/boilerjuice
boilerjuice
/
test
/
boilerjuice.js
12 lines
(10 loc)
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
expect =
require
(
'chai'
).
expect
const
boilerjuice =
require
(
'../index.js'
);
describe
(
'boilerjuice'
,
() =>
{
it
(
'should not error'
,
done
=>
{ boilerjuice.
get
(
7
).
then
(
ret
=>
{
expect
(ret).
to
.
have
.
length
(
7
);
return
done
(); }); }); });