fix: increase timeout from 5s to 15s for playwright status tests (#8267)

This commit is contained in:
Matthew Holloway 2024-11-25 15:42:05 +00:00 committed by GitHub
parent ff5b2e12f3
commit a45f10c0ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,7 +20,8 @@ test.describe('site status', () => {
by: 'Exile is a cool Amiga game'
}
test.beforeEach(({ browserName }) => {
test.beforeEach(({ page, browserName }) => {
page.setDefaultTimeout(15 * 1000) // increase default timeout
test.skip(browserName === 'firefox', 'bypassing flaky tests on Firefox')
})