ruffle/web/packages/selfhosted/test/polyfill/object_flashvars/test.ts

55 lines
1.0 KiB
TypeScript
Raw Normal View History

import { injectRuffleAndWait, openTest, playAndMonitor } from "../../utils.js";
import { expect, use } from "chai";
import chaiHtml from "chai-html";
import fs from "fs";
2020-10-11 18:44:25 +00:00
use(chaiHtml);
describe("Object tag", () => {
it("loads the test", async () => {
await openTest(browser, `polyfill/object_flashvars`);
2020-10-11 18:44:25 +00:00
});
it("polyfills 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",
);
2020-10-11 18:44:25 +00:00
expect(actual).html.to.equal(expected);
});
it("Plays a movie with flashvars", async () => {
2023-05-30 20:24:43 +00:00
await playAndMonitor(
2020-10-11 18:44:25 +00:00
browser,
await browser.$("#test-container").$("<ruffle-embed />"),
2020-10-11 18:44:25 +00:00
`// _level0.a
1
// typeof(a)
string
// _level0.b
3 %3
// typeof(b)
string
// _level0.c
// typeof(c)
string
// _level0.d
undefined
// typeof(d)
undefined
2023-07-20 11:19:39 +00:00
`,
2020-10-11 18:44:25 +00:00
);
});
});