Skip to content

Commit fd73fa0

Browse files
committed
fix: safari clipboard test
1 parent cb7bace commit fd73fa0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/suites/tenant/summary/objectSummary.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,9 @@ test.describe('Object Summary', async () => {
201201
]);
202202
});
203203

204-
test('Copy path copies correct path to clipboard', async ({page}) => {
204+
test.only('Copy path copies correct path to clipboard', async ({page, browserName}) => {
205+
test.skip(browserName === 'webkit', 'Clipboard API is not reliable in Safari');
206+
205207
const pageQueryParams = {
206208
schema: dsVslotsSchema,
207209
database: tenantName,

0 commit comments

Comments
 (0)