summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-09-30 17:22:58 +1000
committerGitHub <noreply@github.com>2020-09-30 17:22:58 +1000
commit7c62b7b0434314fee1355ccfa2a95aea2a9cc01e (patch)
tree483f3de1adf3f209d256b1f4af4d22e16d7732da /cli/tests/integration_tests.rs
parent27ee4b255107d8e074c06b57927b7349f4edd044 (diff)
fix(cli): use global_state file_fetcher when using SpecifierHandler (#7748)
Fixes: #7709
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index c062d3371..d836bc71a 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -1506,6 +1506,12 @@ itest!(deno_test_only {
output: "deno_test_only.ts.out",
});
+itest!(deno_test_no_check {
+ args: "test --no-check test_runner_test.ts",
+ exit_code: 1,
+ output: "deno_test.out",
+});
+
#[test]
fn timeout_clear() {
// https://github.com/denoland/deno/issues/7599