Skip to content

Commit 407ed46

Browse files
authored
Skip webkit redirect test due to flakiness (#2452)
1 parent e978276 commit 407ed46

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

e2e/tests/feature-page.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ test('date range changes are preserved in the URL', async ({page}) => {
211211
expect(await endDateInputElement3.inputValue()).toBe(endDate);
212212
});
213213

214-
test('redirects for a moved feature', async ({page}) => {
214+
test('redirects for a moved feature', async ({page, browserName}) => {
215+
test.skip(browserName === 'webkit', 'Skipping webkit due to flakiness');
215216
// Wait for the app to fetch the old feature data which triggers the redirect.
216217
const responsePromise = page.waitForResponse(response =>
217218
response.url().includes('/v1/features/old-feature'),

0 commit comments

Comments
 (0)