1
0
Fork 0
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:
Bartek Iwańczuk 2024-01-02 16:56:52 +01:00
parent 551140e475
commit 31318e9ae0
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750

View file

@ -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 {