Skip to content

Commit

Permalink
chore: use div instead of template
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandolf committed Sep 15, 2022
1 parent 748d48b commit 2e26b7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/src/queryhandler.spec.ts
Expand Up @@ -130,15 +130,15 @@ describe('Query handler tests', function () {
const elements = await page.$$('text/a');
expect(elements.length).toBe(2);
});
it('should pierce shadow DOM', async () => {
it.only('should pierce shadow DOM', async () => {
const {page} = getTestState();

await page.setContent(`
<div>
<template shadowroot="open">
<div shadowroot="open">
<div>a</div>
<div>b</div>
</template>
</div>
</div>
`);

Expand Down

0 comments on commit 2e26b7f

Please sign in to comment.