@omnimedia/omnitool
Version:
open source video processing tools
12 lines • 486 B
JavaScript
import { Driver } from "./driver.js";
import { Science, test, expect } from "@e280/science";
const workerUrl = new URL("./driver.worker.bundle.js", import.meta.url);
export default Science.suite({
"driver hello world": test.skip(async () => {
const driver = await Driver.setup({ workerUrl });
expect(driver.machina.count).is(0);
await driver.thread.work.hello();
expect(driver.machina.count).is(1);
}),
});
//# sourceMappingURL=driver.test.js.map