diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-17 22:35:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 17:35:38 -0400 |
commit | 4a4894532e9ffe0066038783b4178c7dd770ba24 (patch) | |
tree | 46929391d7fabd6e742f54c9d886277d3f88b12d /cli/tests/integration_tests.rs | |
parent | 9050d36d5763beabb1a642819dd24d61cccb3ffe (diff) |
try to handle ConnectionReset error in windows CI for unit tests (#4407)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 75b8764ad..9cdf0af56 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -275,6 +275,7 @@ fn js_unit_tests() { .arg("-A") .arg("cli/js/tests/unit_test_runner.ts") .arg("--master") + .arg("--verbose") .spawn() .expect("failed to spawn script"); let status = deno.wait().expect("failed to wait for the child process"); |