mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
chore: increase unit test timeout to 3m (#21760)
Alternative to #21758 to fix timing out tests on Windows.
This commit is contained in:
parent
551140e475
commit
31318e9ae0
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue