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 committed by GitHub
parent 9f7586a206
commit 3e68114736
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 {