mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
26 lines
524 B
Text
26 lines
524 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"tests": {
|
||
|
"matching_version": {
|
||
|
"cwd": "./my-pkg",
|
||
|
"steps": [{
|
||
|
"args": "test",
|
||
|
"output": "test.out"
|
||
|
}, {
|
||
|
"args": "lint",
|
||
|
"output": "Checked 2 files\n"
|
||
|
}]
|
||
|
},
|
||
|
"not_matching_version": {
|
||
|
"steps": [{
|
||
|
"args": "run --allow-read=. --allow-write=. modify_version.ts",
|
||
|
"output": "[WILDCARD]"
|
||
|
}, {
|
||
|
"cwd": "./my-pkg",
|
||
|
"args": "test",
|
||
|
"output": "not_matching_version.out"
|
||
|
}]
|
||
|
}
|
||
|
}
|
||
|
}
|