Skip to content

Commit

Permalink
chore: Bypass Firefox for Playwright test due to flakiness (#8050)
Browse files Browse the repository at this point in the history
  • Loading branch information
holloway authored Oct 15, 2024
1 parent 1663408 commit 68ceea9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions playwright/tests/status/status.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ test.describe('site status', () => {
by: 'Exile is a cool Amiga game'
}

test.beforeEach(({ browserName }) => {
test.skip(browserName === 'firefox', 'bypassing flaky tests on Firefox')
})

test('Renders server status as Notification', async ({ page }) => {
await page.route('/status/latest.json', route => {
route.fulfill({
Expand Down

0 comments on commit 68ceea9

Please sign in to comment.