-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnode-test.js
54 lines (50 loc) · 1.22 KB
/
node-test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const test = require('node:test')
const spok = require('../').default
// this would be returned from a function you are testing
const object = {
one: 1,
two: 2,
three: 3,
four: 4,
helloWorld: 'hello world',
anyNum: 999,
anotherNum: 888,
anArray: [1, 2],
anotherArray: [1, 2, 3],
anObject: {},
}
// custom specification
function hasThreeElements(a) {
return a.length === 3
}
test('my object meets the specifications', function(t) {
spok(t, object, {
$topic: 'spok-example',
one: spok.ge(1),
two: 2,
three: spok.range(2, 4),
four: spok.lt(5),
helloWorld: spok.startsWith('hello'),
anyNum: spok.type('number'),
anotherNum: spok.number,
anArray: spok.array,
anotherArray: hasThreeElements,
anObject: spok.ne(undefined),
})
})
test('\n#my object meets the specifications - print description', function(t) {
spok.printDescription = true
spok(t, object, {
$topic: 'spok-example',
one: spok.ge(1),
two: 2,
three: spok.range(2, 4),
four: spok.lt(5),
helloWorld: spok.startsWith('hello'),
anyNum: spok.type('number'),
anotherNum: spok.number,
anArray: spok.array,
anotherArray: hasThreeElements,
anObject: spok.ne(undefined),
})
})