summaryrefslogtreecommitdiff
path: root/cli/test_runner.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-04-28 00:06:03 +0100
committerGitHub <noreply@github.com>2020-04-28 01:06:03 +0200
commit4041a7b8576047021c2eec711f013c6f01e471e0 (patch)
treee49ade03d1d888ea83a9fccf51ba8742a6365cc7 /cli/test_runner.rs
parent2f0641885c62ba6a1e58ae0030f635efd3f35b2a (diff)
BREAKING: Remove Deno.symbols namespace (#4936)
Diffstat (limited to 'cli/test_runner.rs')
-rw-r--r--cli/test_runner.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/test_runner.rs b/cli/test_runner.rs
index 0c2318052..8ad42d161 100644
--- a/cli/test_runner.rs
+++ b/cli/test_runner.rs
@@ -79,7 +79,7 @@ pub fn render_test_file(
};
let run_tests_cmd = format!(
- "(Deno as any)[Deno.symbols.internal].runTests({});\n",
+ "// @ts-ignore\nDeno[Deno.internal].runTests({});\n",
options
);
test_file.push_str(&run_tests_cmd);