Skip to content

Commit d74c9da

Browse files
GustedGusted
authored andcommitted
chore: disable E2E test for webkit (#8611)
As far as I can see and tell, the newest webkit version contains a regression that makes this specific test fail. The screenshots that are uploaded upon failure do not seem to suggest that this test should fail. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8611 Reviewed-by: 0ko <[email protected]> Reviewed-by: Michael Kriese <[email protected]> Co-authored-by: Gusted <[email protected]> Co-committed-by: Gusted <[email protected]>
1 parent cf46b22 commit d74c9da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/e2e/markup.test.e2e.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
import {expect} from '@playwright/test';
66
import {save_visual, test} from './utils_e2e.ts';
77

8-
test('markup with #xyz-mode-only', async ({page}) => {
8+
test('markup with #xyz-mode-only', async ({page}, workerInfo) => {
9+
test.skip(['webkit', 'Mobile Safari'].includes(workerInfo.project.name), 'Newest version contains a regression');
910
const response = await page.goto('/user2/repo1/issues/1');
1011
expect(response?.status()).toBe(200);
1112

0 commit comments

Comments
 (0)