Files
bun.sh/test/cli/hot/watch.test.ts
2024-10-18 01:14:42 +00:00

51 lines
1.7 KiB
TypeScript

import { spawn } from "bun";
import { describe, expect, test } from "bun:test";
import { bunEnv, bunExe, forEachLine, isBroken, isWindows, tempDirWithFiles } from "harness";
import { writeFile } from "node:fs/promises";
import { join } from "node:path";
describe.todoIf(isBroken && isWindows)("--watch works", async () => {
for (const watchedFile of ["entry.js", "tmp.js"]) {
test(`with ${watchedFile}`, async () => {
const tmpdir_ = tempDirWithFiles("watch-fixture", {
"tmp.js": "console.log('hello #1')",
"entry.js": "import './tmp.js'",
"package.json": JSON.stringify({ name: "foo", version: "0.0.1" }),
});
await Bun.sleep(1000);
const tmpfile = join(tmpdir_, "tmp.js");
const process = spawn({
cmd: [bunExe(), "--watch", join(tmpdir_, watchedFile)],
cwd: tmpdir_,
env: bunEnv,
stdio: ["ignore", "pipe", "inherit"],
});
const { stdout } = process;
const iter = forEachLine(stdout);
let { value: line, done } = await iter.next();
expect(done).toBe(false);
expect(line).toBe("hello #1");
await writeFile(tmpfile, "console.log('hello #2')");
({ value: line } = await iter.next());
expect(line).toBe("hello #2");
await writeFile(tmpfile, "console.log('hello #3')");
({ value: line } = await iter.next());
expect(line).toBe("hello #3");
await writeFile(tmpfile, "console.log('hello #4')");
({ value: line } = await iter.next());
expect(line).toBe("hello #4");
await writeFile(tmpfile, "console.log('hello #5')");
({ value: line } = await iter.next());
expect(line).toBe("hello #5");
process.kill("SIGKILL");
await process.exited;
});
}
});