diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-04-29 10:08:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-29 10:08:27 -0400 |
| commit | da52058a945999d486b07700d2834f027a65947c (patch) | |
| tree | b6031c274cbc36dcefc6d681473e366cdb208c89 /tests/testdata/run | |
| parent | b02ffec37c73be8a73b95b33b32efa693e84e01b (diff) | |
chore: migrate bench, publish, and more itests to spec tests (#23584)
Diffstat (limited to 'tests/testdata/run')
11 files changed, 0 insertions, 43 deletions
diff --git a/tests/testdata/run/fetch/other.ts b/tests/testdata/run/fetch/other.ts deleted file mode 100644 index 91fe376b3..000000000 --- a/tests/testdata/run/fetch/other.ts +++ /dev/null @@ -1 +0,0 @@ -import "http://localhost:4545/subdir/mt_text_typescript.t1.ts"; diff --git a/tests/testdata/run/fetch/test.ts b/tests/testdata/run/fetch/test.ts deleted file mode 100644 index baa52775d..000000000 --- a/tests/testdata/run/fetch/test.ts +++ /dev/null @@ -1 +0,0 @@ -import "http://localhost:4545/subdir/mod2.ts"; diff --git a/tests/testdata/run/with_package_json/no_deno_json/main.out b/tests/testdata/run/with_package_json/no_deno_json/main.out deleted file mode 100644 index 402b30ed4..000000000 --- a/tests/testdata/run/with_package_json/no_deno_json/main.out +++ /dev/null @@ -1,4 +0,0 @@ -[WILDCARD]package.json file found at '[WILDCARD]with_package_json[WILDCARD]no_deno_json[WILDCARD]package.json' -[WILDCARD] -ok -[Function (anonymous)] Chalk [WILDCARD] diff --git a/tests/testdata/run/with_package_json/no_deno_json/main.ts b/tests/testdata/run/with_package_json/no_deno_json/main.ts deleted file mode 100644 index 1e6e50040..000000000 --- a/tests/testdata/run/with_package_json/no_deno_json/main.ts +++ /dev/null @@ -1,4 +0,0 @@ -import chalk from "chalk"; - -console.log("ok"); -console.log(chalk); diff --git a/tests/testdata/run/with_package_json/no_deno_json/no_package_json_imports.out b/tests/testdata/run/with_package_json/no_deno_json/no_package_json_imports.out deleted file mode 100644 index 7ed6ff82d..000000000 --- a/tests/testdata/run/with_package_json/no_deno_json/no_package_json_imports.out +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/tests/testdata/run/with_package_json/no_deno_json/no_package_json_imports.ts b/tests/testdata/run/with_package_json/no_deno_json/no_package_json_imports.ts deleted file mode 100644 index 0f3785f91..000000000 --- a/tests/testdata/run/with_package_json/no_deno_json/no_package_json_imports.ts +++ /dev/null @@ -1 +0,0 @@ -console.log(5); diff --git a/tests/testdata/run/with_package_json/no_deno_json/noconfig.out b/tests/testdata/run/with_package_json/no_deno_json/noconfig.out deleted file mode 100644 index b9f9a6dea..000000000 --- a/tests/testdata/run/with_package_json/no_deno_json/noconfig.out +++ /dev/null @@ -1,4 +0,0 @@ -[WILDCARD]package.json auto-discovery is disabled -[WILDCARD] -success -[WILDCARD] diff --git a/tests/testdata/run/with_package_json/no_deno_json/noconfig.ts b/tests/testdata/run/with_package_json/no_deno_json/noconfig.ts deleted file mode 100644 index 73b348fbc..000000000 --- a/tests/testdata/run/with_package_json/no_deno_json/noconfig.ts +++ /dev/null @@ -1,8 +0,0 @@ -// ensure the cwd is this directory -const cwd = Deno.cwd(); -if (!cwd.endsWith("no_deno_json")) { - console.log(cwd); - throw "FAIL"; -} else { - console.log("success"); -} diff --git a/tests/testdata/run/with_package_json/no_deno_json/package.json b/tests/testdata/run/with_package_json/no_deno_json/package.json deleted file mode 100644 index a85b890a8..000000000 --- a/tests/testdata/run/with_package_json/no_deno_json/package.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "dependencies": { - "@denotest/check-error": "1.0.0", - "chalk": "4" - }, - "devDependencies": { - "@denotest/cjs-default-export": "1.0.0" - } -} diff --git a/tests/testdata/run/with_package_json/no_deno_json/sub_dir/main.js b/tests/testdata/run/with_package_json/no_deno_json/sub_dir/main.js deleted file mode 100644 index 492a8fa40..000000000 --- a/tests/testdata/run/with_package_json/no_deno_json/sub_dir/main.js +++ /dev/null @@ -1,3 +0,0 @@ -import "chalk"; -console.log(Deno.cwd()); -console.log(Deno.statSync("../node_modules")); diff --git a/tests/testdata/run/with_package_json/no_deno_json/sub_dir/main.out b/tests/testdata/run/with_package_json/no_deno_json/sub_dir/main.out deleted file mode 100644 index 0ec791960..000000000 --- a/tests/testdata/run/with_package_json/no_deno_json/sub_dir/main.out +++ /dev/null @@ -1,7 +0,0 @@ -Download http://[WILDCARD] -[WILDCARD]sub_dir -{ - [WILDCARD] - isDirectory: true, - [WILDCARD] -} |
