-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnode-test-nested.js
56 lines (54 loc) · 1.26 KB
/
node-test-nested.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
55
56
const test = require('node:test')
const spok = require('../').default
const res = {
$topic: 'user function',
file: '/Volumes/d/dev/js/async-hooks/ah-fs/test/read-one-file.js',
line: 39,
column: 17,
inferredName: '',
name: 'onread',
location:
'onread (/Volumes/d/dev/js/async-hooks/ah-fs/test/read-one-file.js:39:17)',
propertyPaths: [
'open.resource.context.callback',
'close.resource.context.callback',
],
args: {
'0': null,
'1': {
type: 'Buffer',
len: 6108,
included: 18,
val: {
utf8: 'const test = requi',
hex: '636f6e73742074657374203d207265717569',
},
},
proto: 'Object',
},
}
test('\nspok handles nested specifications', function(t) {
spok(t, res, {
$topic: 'result',
file: spok.test(/read-one-file/),
line: 39,
column: 17,
inferredName: '',
name: 'onread',
location: spok.startsWith('onread'),
propertyPaths: [
'open.resource.context.callback',
'close.resource.context.callback',
],
args: {
'0': null,
'1': {
type: 'Buffer',
len: spok.gt(1000),
included: spok.lt(20),
val: { utf8: spok.string, hex: '636f6e73742074657374203d207265717569' },
},
proto: 'Object',
},
})
})