forked from denoland/deno
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__test__.jsonc
More file actions
41 lines (41 loc) · 1005 Bytes
/
__test__.jsonc
File metadata and controls
41 lines (41 loc) · 1005 Bytes
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
{
"tempDir": true,
"tests": {
"missing_bin": {
"steps": [
{
"args": "install npm:denotest-packagejson-missing-info@1.0.0-missingbin",
"output": "missingbin.out"
},
{
"args": "run -A ./has-bin.ts denotest",
"output": ""
}
]
},
"binding_gyp_scripts": {
"steps": [
{
"args": "install npm:denotest-packagejson-missing-info@0.7.0-bindinggyp",
"output": "bindinggyp.out"
}
]
},
"missing_deprecated": {
"steps": [
{
"args": "install npm:denotest-packagejson-missing-info@0.2.5-missingdeprecated",
"output": "missingdeprecated.out"
}
]
},
"missing_deprecated_with_lazy_caching": {
"steps": [
{
"args": "install --unstable-npm-lazy-caching npm:denotest-packagejson-missing-info@0.2.5-missingdeprecated",
"output": "missingdeprecated.out"
}
]
}
}
}