Fixed CI
* missing semi colons because returned block
This commit is contained in:
parent
127c800638
commit
585700dffb
1 changed files with 2 additions and 2 deletions
4
test.js
4
test.js
|
|
@ -329,10 +329,10 @@ test('is.inRange', t => {
|
||||||
t.false(m.inRange(-3, -2));
|
t.false(m.inRange(-3, -2));
|
||||||
|
|
||||||
t.throws(() => {
|
t.throws(() => {
|
||||||
m.inRange(0)
|
m.inRange(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
t.throws(() => {
|
t.throws(() => {
|
||||||
m.inRange(0, [5])
|
m.inRange(0, [5]);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue