Skip to content

Commit

Permalink
test: disable drag test (#1901)
Browse files Browse the repository at this point in the history
- Adds #1897 
  - Re-disable drag test but for webkit only
  • Loading branch information
wusteven815 authored Mar 27, 2024
1 parent 80207f4 commit 78c1af1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/table-operations.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ test('organize columns', async ({ page }) => {
});
});

test('custom column', async ({ page }) => {
test('custom column', async ({ page, browserName }) => {
await openTableOption(page, 'Custom Columns');

await test.step('Create custom column', async () => {
Expand Down Expand Up @@ -390,6 +390,8 @@ test('custom column', async ({ page }) => {
});

await test.step('Drag', async () => {
if (browserName === 'webkit') return;

await addColumnButton.click();

const dragColumn = page.getByPlaceholder('Column Name').nth(1);
Expand Down

0 comments on commit 78c1af1

Please sign in to comment.