Skip to content

Commit

Permalink
fix: safari clipboard test
Browse files Browse the repository at this point in the history
  • Loading branch information
astandrik committed Dec 28, 2024
1 parent cb7bace commit fd73fa0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/suites/tenant/summary/objectSummary.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ test.describe('Object Summary', async () => {
]);
});

test('Copy path copies correct path to clipboard', async ({page}) => {
test.only('Copy path copies correct path to clipboard', async ({page, browserName}) => {
test.skip(browserName === 'webkit', 'Clipboard API is not reliable in Safari');

const pageQueryParams = {
schema: dsVslotsSchema,
database: tenantName,
Expand Down

0 comments on commit fd73fa0

Please sign in to comment.