Files
taimed/node_modules/karma-jsdom-launcher/test/no-provided-config-test.js
2025-07-24 17:21:45 +08:00

10 lines
253 B
JavaScript

let { createKarmaTest } = require("./test-helper");
describe("with jsdomLauncher: null", function () {
it("should exit well", async () => {
await createKarmaTest(null, () => {
// This test is simply expected to exit well.
});
});
});