fix: increase hook timeout for e2e tests (#5326)

Signed-off-by: Ondrej Dockal <odockal@redhat.com>
This commit is contained in:
Ondrej Dockal 2023-12-19 21:32:57 +01:00 committed by GitHub
parent 0765fc953e
commit 68cc418b8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,7 +47,7 @@ const config = {
* A default timeout of 5000ms is sometimes not enough for playwright.
*/
testTimeout: 60_000,
hookTimeout: 60_000,
hookTimeout: 120_000,
// test reporters - default for all and junit for CI
reporters: process.env.CI ? ['default', 'junit'] : ['default'],
outputFile: process.env.CI ? { junit: 'tests/output/junit-results.xml' } : {},