Skip to content

Commit 56e2e94

Browse files
authoredMar 11, 2025··
chore(tests): disable flaky references e2e tests (#8882)
1 parent 0df9906 commit 56e2e94

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎test/e2e/tests/inputs/reference.spec.ts

+4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ withDefaultClient((context) => {
6969
test(`_strengthenOnPublish and _weak properties exist when adding reference to a draft document`, async ({
7070
page,
7171
createDraftDocument,
72+
browserName,
7273
}) => {
74+
test.skip(browserName === 'firefox' || browserName === 'chromium')
7375
test.slow()
7476
const originalTitle = 'Initial Doc'
7577

@@ -145,7 +147,9 @@ withDefaultClient((context) => {
145147
test(`_strengthenOnPublish and _weak properties are removed when the reference and document are published`, async ({
146148
page,
147149
createDraftDocument,
150+
browserName,
148151
}) => {
152+
test.skip(browserName === 'firefox' || browserName === 'chromium')
149153
// this is in a situation where the _strengthenOnPublish.weak is not set
150154

151155
test.slow()

0 commit comments

Comments
 (0)
Please sign in to comment.