Skip to content

Commit 8132aaf

Browse files
test: skip webkit spec.
1 parent 44a8c35 commit 8132aaf

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

playwright/github-pr-drawer.spec.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,14 @@ test('Fresh PAT bootstrap persists drawer head metadata to IDB', async ({ page }
975975
for (const prContextState of ['inactive', 'disconnected', 'closed'] as const) {
976976
test(`Head stays fixed across repository changes for ${prContextState} workspace context`, async ({
977977
page,
978+
browserName,
978979
}) => {
980+
// WebKit-only quarantine: keep these specs active on Chromium while CI flake is investigated.
981+
test.fixme(
982+
browserName === 'webkit',
983+
'Temporarily quarantined on WebKit due CI-only Workspaces drawer timing flake.',
984+
)
985+
979986
const sourceRepository = 'knightedcodemonkey/contract-case'
980987
const targetRepository = 'knightedcodemonkey/develop-sandbox'
981988
const workspaceHead = 'feat/component-j101'
@@ -1077,7 +1084,14 @@ for (const prContextState of ['inactive', 'disconnected', 'closed'] as const) {
10771084

10781085
test('Open PR keeps inactive workspace record when repository changes', async ({
10791086
page,
1087+
browserName,
10801088
}) => {
1089+
// WebKit-only quarantine: keep this spec active on Chromium while CI flake is investigated.
1090+
test.fixme(
1091+
browserName === 'webkit',
1092+
'Temporarily quarantined on WebKit due CI-only Workspaces drawer timing flake.',
1093+
)
1094+
10811095
const oldRepository = 'knightedcodemonkey/contract-case'
10821096
const newRepository = 'knightedcodemonkey/develop-sandbox'
10831097
const headBranch = 'feat/component-sync'
@@ -3539,7 +3553,14 @@ test('Active PR context push commit uses Git Database API atomic path by default
35393553

35403554
test('Open PR uses module tab paths when stale target file paths collide', async ({
35413555
page,
3556+
browserName,
35423557
}) => {
3558+
// WebKit-only quarantine: keep this spec active on Chromium while CI flake is investigated.
3559+
test.fixme(
3560+
browserName === 'webkit',
3561+
'Temporarily quarantined on WebKit due CI-only Workspaces drawer timing flake.',
3562+
)
3563+
35433564
const treeRequests: Array<Record<string, unknown>> = []
35443565
const commitRequests: Array<Record<string, unknown>> = []
35453566

0 commit comments

Comments
 (0)