We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1663408 commit 68ceea9Copy full SHA for 68ceea9
playwright/tests/status/status.spec.js
@@ -20,6 +20,10 @@ test.describe('site status', () => {
20
by: 'Exile is a cool Amiga game'
21
}
22
23
+ test.beforeEach(({ browserName }) => {
24
+ test.skip(browserName === 'firefox', 'bypassing flaky tests on Firefox')
25
+ })
26
+
27
test('Renders server status as Notification', async ({ page }) => {
28
await page.route('/status/latest.json', route => {
29
route.fulfill({
0 commit comments