diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-02 16:56:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-02 16:56:52 +0100 |
commit | 3e68114736de4900aa6d24e68e072832932a07f2 (patch) | |
tree | faa37bd7ec8dc24a2a9147cc7b7a6360a051096d /cli | |
parent | 9f7586a20691e5adb080f60f569498844f8a295f (diff) |
chore: increase unit test timeout to 3m (#21760)
Alternative to #21758 to fix timing out tests on Windows.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/tests/integration/js_unit_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration/js_unit_tests.rs b/cli/tests/integration/js_unit_tests.rs index 716c761b5..8fbeb61e1 100644 --- a/cli/tests/integration/js_unit_tests.rs +++ b/cli/tests/integration/js_unit_tests.rs @@ -163,7 +163,7 @@ fn js_unit_test(test: String) { } }); - const PER_TEST_TIMEOUT: Duration = Duration::from_secs(2 * 60); + const PER_TEST_TIMEOUT: Duration = Duration::from_secs(3 * 60); let now = Instant::now(); let status = loop { |