summaryrefslogtreecommitdiff
path: root/tests/testdata/run/warn_on_deprecated_api/mod.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-11-15 00:19:12 +0000
committerGitHub <noreply@github.com>2024-11-15 00:19:12 +0000
commitdcc75d5685ddb1ad3c1b97721cbc24bf6fa56c76 (patch)
tree0e148a4dcbf8dddbeaf5801e85e147a404ce6e1f /tests/testdata/run/warn_on_deprecated_api/mod.ts
parent617350e79c58b6e01984e3d7c7436d243d0e5cff (diff)
chore: remove some unused tests (#26878)
Diffstat (limited to 'tests/testdata/run/warn_on_deprecated_api/mod.ts')
-rw-r--r--tests/testdata/run/warn_on_deprecated_api/mod.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/testdata/run/warn_on_deprecated_api/mod.ts b/tests/testdata/run/warn_on_deprecated_api/mod.ts
deleted file mode 100644
index f74632b2c..000000000
--- a/tests/testdata/run/warn_on_deprecated_api/mod.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-export async function runEcho() {
- const p = Deno.run({
- cmd: [
- Deno.execPath(),
- "eval",
- "console.log('hello world')",
- ],
- });
- await p.status();
- p.close();
-}