Skip to content

Commit d841cf2

Browse files
committed
fix: test
1 parent 654e728 commit d841cf2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/suites/tenant/queryEditor/queryEditor.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,9 @@ test.describe('Test Query Editor', async () => {
380380
await expect(queryEditor.isResultsControlsCollapsed()).resolves.toBe(false);
381381
});
382382

383-
test('Copy result button copies to clipboard', async ({page}) => {
383+
test('Copy result button copies to clipboard', async ({page, browserName}) => {
384+
// Skip this test in Safari due to clipboard permission issues
385+
test.skip(browserName === 'webkit', 'Clipboard API not fully supported in Safari');
384386
const queryEditor = new QueryEditor(page);
385387
const query = 'SELECT 42 as answer;';
386388

0 commit comments

Comments
 (0)