diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/integration_tests.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index f90e434da..0e6137782 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -274,12 +274,13 @@ fn js_unit_tests() { .arg("--reload") .arg("-A") .arg("cli/js/tests/unit_test_runner.ts") + .arg("--master") .spawn() .expect("failed to spawn script"); let status = deno.wait().expect("failed to wait for the child process"); + drop(g); assert_eq!(Some(0), status.code()); assert!(status.success()); - drop(g); } #[test] |