Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
fix(core-toggle-test): skip for webkit and point to issue
Browse files Browse the repository at this point in the history
  • Loading branch information
klizter committed Aug 17, 2023
1 parent 60ed4ef commit 0865e20
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/core-toggle/core-toggle.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ test.describe('core-toggle', () => {
await expect(coreToggle).toHaveJSProperty('hidden', true)
})

test('closes nested toggle with esc', async ({ page }) => {
test('closes nested toggle with esc', async ({ page, browserName }) => {

// TODO: https://github.com/nrkno/core-components/issues/719
if (browserName === 'webkit') test.skip()

await page.setContent(`
<button>Toggle</button>
<core-toggle data-testid='core-toggle' hidden>
Expand Down

0 comments on commit 0865e20

Please sign in to comment.