blob: 4f0b21b0ffdfae4e875c92603c883d629e40c73c (
plain)
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
|
{
"tests": {
"not_in_deps": {
"steps": [{
"args": "run -A --quiet npm:cowsay moo",
"output": "not_in_deps.out"
}, {
// ensure it doesn't make any lockfile modifications and thus doesn't write to the lockfile
"args": [
"eval",
"try { Deno.statSync('deno.lock') } catch (e) { console.log(e instanceof Deno.errors.NotFound); }"
],
"output": "true\n"
}]
},
"in_deps": {
"tempDir": true,
"steps": [{
"args": "install npm:cowsay",
"output": "[WILDCARD]"
}, {
"args": "run --allow-write overwrite.ts",
"output": "[WILDCARD]"
}, {
"args": "run -A npm:cowsay moo",
"output": "replaced\n"
}]
}
}
}
|