1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/specs/clean/general/__test__.jsonc
David Sherret e9e3ab4628
feat: deno clean (#24950)
Co-authored-by: Satya Rohith <me@satyarohith.com>
2024-08-08 13:22:18 +00:00

37 lines
785 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\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"
}]
}