Skip to content

Commit

Permalink
test: skip the shadow dom poller test via expectations (#13534)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN authored Jan 21, 2025
1 parent a10645a commit ce14e8d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions test/TestExpectations.json
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,13 @@
"expectations": ["SKIP"],
"comment": "TODO: add a comment explaining why this expectation is required (include links to issues)"
},
{
"testIdPattern": "[waittask.spec] waittask specs Frame.waitForSelector should work when node is added in a shadow root",
"platforms": ["darwin", "linux", "win32"],
"parameters": [],
"expectations": ["SKIP"],
"comment": "See https://github.com/puppeteer/puppeteer/issues/13163"
},
{
"testIdPattern": "[worker.spec] *",
"platforms": ["darwin", "linux", "win32"],
Expand Down
2 changes: 1 addition & 1 deletion test/src/waittask.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ describe('waittask specs', function () {

// MutationPoller currently does not support shadow DOM.
// See https://github.com/puppeteer/puppeteer/issues/13163.
it.skip('should work when node is added in a shadow root', async () => {
it('should work when node is added in a shadow root', async () => {
const {page, server} = await getTestState();

await page.goto(server.EMPTY_PAGE);
Expand Down

0 comments on commit ce14e8d

Please sign in to comment.