Skip to content

Commit

Permalink
Follow API change in test with reverted workaround too
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Oct 28, 2024
1 parent 9f989ab commit a86adcd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/packages/selfhosted/test/polyfill/spoofing/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ describe("Spoofing is not easily detectable", () => {
await injectRuffleAndWait(browser);
await browser.$("<ruffle-object />").waitForExist();

const actual = await browser.$("#test-container").getHTML(false);
const actual = await browser
.$("#test-container")
.getHTML({ includeSelectorTag: false, pierceShadowRoot: false });
const expected = fs.readFileSync(
`${import.meta.dirname}/expected.html`,
"utf8",
Expand Down

0 comments on commit a86adcd

Please sign in to comment.