Skip to content

Commit

Permalink
test: Skip newly added flaky "Resize merged cells height/width" tests…
Browse files Browse the repository at this point in the history
… for linux/collab/firefox mode
  • Loading branch information
umaranis committed Aug 31, 2024
1 parent 6634295 commit a24ae45
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion demos/playground/src/__tests__/e2e/Tables.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import {
insertTableColumnBefore,
insertTableRowBelow,
IS_COLLAB,
IS_LINUX,
LEGACY_EVENTS,
mergeTableCells,
pasteFromClipboard,
Expand Down Expand Up @@ -1524,11 +1525,16 @@ test.describe.parallel('Tables', () => {
});

test('Resize merged cells width (1)', async ({
browserName,
page,
isPlainText,
isCollab,
}) => {
await initialize({isCollab, page});
test.fixme(
isCollab && IS_LINUX && browserName === 'firefox',
'Flaky on Linux + Collab',
);
test.skip(isPlainText);
if (IS_COLLAB) {
// The contextual menu positioning needs fixing (it's hardcoded to show on the right side)
Expand Down Expand Up @@ -1677,9 +1683,15 @@ test.describe.parallel('Tables', () => {
);
});

test('Resize merged cells height', async ({page, isPlainText, isCollab}) => {
test('Resize merged cells height', async ({
browserName,
page,
isPlainText,
isCollab,
}) => {
await initialize({isCollab, page});
test.skip(isPlainText);
test.fixme(IS_COLLAB && IS_LINUX && browserName === 'firefox');
if (IS_COLLAB) {
// The contextual menu positioning needs fixing (it's hardcoded to show on the right side)
page.setViewportSize({height: 1000, width: 3000});
Expand Down

0 comments on commit a24ae45

Please sign in to comment.