1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/specs/run/patch/__test__.jsonc

26 lines
524 B
Text
Raw Normal View History

{
"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"
}]
}
}
}