mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
process.exitCode = 1;
|
|
const { AsyncLocalStorage } = require("async_hooks");
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
if (process.execPath.endsWith("bun-asan")) process.exit(0); // TODO: BUN
|
|
|
|
const asyncLocalStorage = new AsyncLocalStorage();
|
|
const testFile = path.join(fs.mkdtempSync("watch-test"), "watch-test-" + Date.now() + ".txt");
|
|
|
|
asyncLocalStorage.run({ test: "fs.watch" }, () => {
|
|
fs.writeFileSync(testFile, "initial");
|
|
|
|
const watcher = fs.watch(testFile, (eventType, filename) => {
|
|
if (asyncLocalStorage.getStore()?.test !== "fs.watch") {
|
|
console.error("FAIL: fs.watch callback lost context");
|
|
watcher.close();
|
|
try {
|
|
fs.unlinkSync(testFile);
|
|
} catch {}
|
|
process.exit(1);
|
|
}
|
|
watcher.close();
|
|
try {
|
|
fs.unlinkSync(testFile);
|
|
} catch {}
|
|
process.exit(0);
|
|
});
|
|
|
|
// Trigger the watch event
|
|
setTimeout(() => {
|
|
fs.writeFileSync(testFile, "modified");
|
|
}, 100);
|
|
|
|
// Timeout safety
|
|
setTimeout(() => {
|
|
watcher.close();
|
|
try {
|
|
fs.unlinkSync(testFile);
|
|
} catch {}
|
|
process.exit(0);
|
|
}, 5000);
|
|
});
|