2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-03-19 06:37:00 -04:00
|
|
|
import { watch } from "node:fs";
|
2024-02-07 11:51:28 -05:00
|
|
|
import { assertEquals } from "@test_util/std/assert/mod.ts";
|
2023-03-19 06:37:00 -04:00
|
|
|
|
|
|
|
function wait(time: number) {
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
setTimeout(resolve, time);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Deno.test({
|
|
|
|
name: "watching a file",
|
|
|
|
async fn() {
|
|
|
|
const file = Deno.makeTempFileSync();
|
2023-07-04 11:27:04 -04:00
|
|
|
const result: Array<[string, string | null]> = [];
|
2023-03-19 06:37:00 -04:00
|
|
|
const watcher = watch(
|
|
|
|
file,
|
|
|
|
(eventType, filename) => result.push([eventType, filename]),
|
|
|
|
);
|
|
|
|
await wait(100);
|
|
|
|
Deno.writeTextFileSync(file, "something");
|
|
|
|
await wait(100);
|
|
|
|
watcher.close();
|
|
|
|
await wait(100);
|
|
|
|
assertEquals(result.length >= 1, true);
|
|
|
|
},
|
|
|
|
});
|