ruffle/web/packages/selfhosted/test/polyfill/object_missing_data/test.js

23 lines
680 B
JavaScript
Raw Normal View History

import { openTest, injectRuffleAndWait } from "../../utils.js";
import { expect, use } from "chai";
import chaiHtml from "chai-html";
import fs from "fs";
use(chaiHtml);
describe("Object without data attribute", () => {
it("loads the test", async () => {
await openTest(browser, import.meta.dirname);
});
it("doesn't polyfill with ruffle", async () => {
2023-05-30 20:24:43 +00:00
await injectRuffleAndWait(browser);
const actual = await browser.$("#test-container").getHTML(false);
const expected = fs.readFileSync(
`${import.meta.dirname}/expected.html`,
"utf8",
);
expect(actual).html.to.equal(expected);
});
});