wdio-qunit-service
Version:
WebdriverIO service for running QUnit browser-based tests and dinamically converting them to wdio test suites.
11 lines • 425 B
JavaScript
import { browser } from "@wdio/globals";
import { sharedContext } from "./sharedContext.js";
sharedContext.qunitHtmlFiles.forEach((path) => {
describe(`No spec found, including - ${path} - from config`, function () {
it("should pass QUnit tests", async function () {
await browser.url(path);
await browser.getQUnitResults();
});
});
});
//# sourceMappingURL=default.test.js.map