Skip to content

Commit

Permalink
test: turn off flaky tests for tables
Browse files Browse the repository at this point in the history
  • Loading branch information
umaranis committed Dec 29, 2024
1 parent 05ee96a commit d082841
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions demos/playground/src/__tests__/e2e/Tables.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2495,7 +2495,8 @@ test.describe.parallel('Tables', () => {
async ({page, isPlainText, browserName, isCollab}) => {
test.fixme(
browserName === 'firefox' ||
(os.platform() === 'linux' && browserName === 'chromium'),
(os.platform() === 'linux' && browserName === 'chromium') ||
IS_COLLAB,
);
await initialize({isCollab, page});
test.skip(isPlainText);
Expand Down Expand Up @@ -2559,8 +2560,9 @@ test.describe.parallel('Tables', () => {
isPlainText,
browserName,
isCollab,
legacyEvents,
}) => {
test.fixme(browserName === 'firefox');
test.fixme(browserName === 'firefox' || legacyEvents);
await initialize({isCollab, page});
test.skip(isPlainText);
if (IS_COLLAB) {
Expand Down Expand Up @@ -2622,8 +2624,9 @@ test.describe.parallel('Tables', () => {
isPlainText,
browserName,
isCollab,
legacyEvents,
}) => {
test.fixme(browserName === 'firefox');
test.fixme(browserName === 'firefox' || legacyEvents);
await initialize({isCollab, page});
test.skip(isPlainText);
if (IS_COLLAB) {
Expand Down

0 comments on commit d082841

Please sign in to comment.