summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/specs/clean/general/__test__.jsonc37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/specs/clean/general/__test__.jsonc b/tests/specs/clean/general/__test__.jsonc
new file mode 100644
index 000000000..f425a20c1
--- /dev/null
+++ b/tests/specs/clean/general/__test__.jsonc
@@ -0,0 +1,37 @@
+{
+ "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"
+ }]
+}