blob: 49a812a309293ec88933636d40029d49253f33f5 [file]
import { describe, expect, test } from "bun:test";
import { watcherOptions } from "./watch.js";
describe("development watcher", () => {
test("waits for generated wrappers to finish multi-write updates", () => {
expect(watcherOptions.awaitWriteFinish).toEqual({
stabilityThreshold: 500,
pollInterval: 100,
});
});
});