diff options
Diffstat (limited to 'cli/test_runner.rs')
-rw-r--r-- | cli/test_runner.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/test_runner.rs b/cli/test_runner.rs index 92c15e251..c3482560b 100644 --- a/cli/test_runner.rs +++ b/cli/test_runner.rs @@ -69,7 +69,7 @@ pub fn render_test_file(modules: Vec<Url>, fail_fast: bool) -> String { } let run_tests_cmd = - format!("Deno.runTests({{ exitOnFail: {} }});\n", fail_fast); + format!("Deno.runTests({{ failFast: {} }});\n", fail_fast); test_file.push_str(&run_tests_cmd); test_file |