Quickly abort hung tests

The default timeout is an absurd two minutes. Let's try to be more
responsive.
This commit is contained in:
Pierre Ossman 2024-08-05 14:18:04 +02:00
parent f412a88a07
commit 9a4beb64a3
1 changed files with 3 additions and 1 deletions

View File

@ -72,5 +72,7 @@ export default {
reporters: [
defaultReporter(),
summaryReporter(),
]
],
// We have small test files, so let's kill hangs quickly
testsFinishTimeout: 10000,
};