fix: increase timeout from 5s to 15s for playwright status tests (#8267)
This commit is contained in:
parent
ff5b2e12f3
commit
a45f10c0ce
|
@ -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')
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue