summaryrefslogtreecommitdiff
path: root/tests/testdata/run/warn_on_deprecated_api/mod.ts
diff options
context:
space:
mode:
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();
-}