spawn-rx
Version:
An Rx-version of child_process.spawn
16 lines (13 loc) • 359 B
text/typescript
/* eslint-disable @typescript-eslint/no-unused-expressions */
import { describe, expect, it } from "bun:test";
function delay(ms: number) {
return new Promise((resolve) => {
setTimeout(resolve, ms);
});
}
describe("The test runner", () => {
it("should pass this test", async () => {
await delay(1000);
expect(true).toBeTruthy();
});
});