1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/specs/clean/general/__test__.jsonc

37 lines
815 B
Text

{
"tempDir": true,
"envs": {
"DENO_DIR": "$PWD/deno_dir"
},
"steps": [{
// create deno dir
"args": "run http://localhost:4545/echo.ts hi",
"output": "[WILDCARD]"
}, {
"args": [
"eval",
"console.log(Deno.statSync('./deno_dir') != null)"
],
"output": "true\n"
}, {
"args": "clean",
"output": "Removed [WILDLINE]/deno_dir ([WILDCARD]files, [WILDCARD])\n"
}, {
"envs": {
// use a new dir to avoid creating the old one
"DENO_DIR": "$PWD/other"
},
"args": "clean",
"output": ""
}, {
"envs": {
// use a new dir to avoid creating the old one
"DENO_DIR": "$PWD/other"
},
"args": [
"eval",
"try { Deno.statSync('./deno_dir') } catch (_) { console.log(true) }"
],
"output": "true\n"
}]
}