Skip to content

Commit

Permalink
test: turn off flaky tests for table
Browse files Browse the repository at this point in the history
  • Loading branch information
umaranis committed Dec 29, 2024
1 parent d082841 commit 7d212f6
Showing 1 changed file with 25 additions and 6 deletions.
31 changes: 25 additions & 6 deletions demos/playground/src/__tests__/e2e/Tables.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2492,11 +2492,12 @@ test.describe.parallel('Tables', () => {
{
tag: '@flaky',
},
async ({page, isPlainText, browserName, isCollab}) => {
async ({page, isPlainText, browserName, isCollab, legacyEvents}) => {
test.fixme(
browserName === 'firefox' ||
(os.platform() === 'linux' && browserName === 'chromium') ||
IS_COLLAB,
isCollab ||
legacyEvents,
);
await initialize({isCollab, page});
test.skip(isPlainText);
Expand Down Expand Up @@ -2562,7 +2563,11 @@ test.describe.parallel('Tables', () => {
isCollab,
legacyEvents,
}) => {
test.fixme(browserName === 'firefox' || legacyEvents);
test.fixme(
browserName === 'firefox' ||
legacyEvents ||
(os.platform() === 'linux' && browserName === 'chromium'),
);
await initialize({isCollab, page});
test.skip(isPlainText);
if (IS_COLLAB) {
Expand Down Expand Up @@ -2626,7 +2631,12 @@ test.describe.parallel('Tables', () => {
isCollab,
legacyEvents,
}) => {
test.fixme(browserName === 'firefox' || legacyEvents);
test.fixme(
browserName === 'firefox' ||
legacyEvents ||
(os.platform() === 'linux' && browserName === 'chromium') ||
isCollab,
);
await initialize({isCollab, page});
test.skip(isPlainText);
if (IS_COLLAB) {
Expand Down Expand Up @@ -2676,8 +2686,14 @@ test.describe.parallel('Tables', () => {
isPlainText,
browserName,
isCollab,
legacyEvents,
}) => {
test.fixme(browserName === 'firefox');
test.fixme(
browserName === 'firefox' ||
legacyEvents ||
(os.platform() === 'linux' && browserName === 'chromium') ||
isCollab,
);
await initialize({isCollab, page});
test.skip(isPlainText);
if (IS_COLLAB) {
Expand Down Expand Up @@ -2937,7 +2953,10 @@ test.describe.parallel('Tables', () => {
browserName,
isCollab,
}) => {
test.fixme(browserName === 'firefox');
test.fixme(
browserName === 'firefox' ||
(os.platform() === 'linux' && browserName === 'chromium'),
);
await initialize({isCollab, page});
test.skip(isPlainText);
if (IS_COLLAB) {
Expand Down

0 comments on commit 7d212f6

Please sign in to comment.