ci: run browser quality on native Windows (#2)
ForgeFlow quality gate / quality (push) Failing after 2m35s
ForgeFlow quality gate / secret-scan (push) Successful in 19s

This commit was merged in pull request #2.
This commit is contained in:
2026-08-27 20:27:52 +02:00
parent 736944bd91
commit 49f43b3875
2 changed files with 14 additions and 7 deletions
+4
View File
@@ -85,6 +85,10 @@ test('a watched repository is read on filesystem activity instead of on every in
revision = 2;
await writeFile(path.join(root, 'feature.txt'), 'changed\n');
// Exercise the monitor's filesystem-activity boundary deterministically.
// Native fs.watch delivery is platform/overlay specific and is covered by
// the product's safety interval rather than by this unit test.
monitor.noteFilesystemChange(root);
// The watcher debounce and the per-repository cooldown both apply here.
const deadline = Date.now() + 5_000;
while (changes.length === 0 && Date.now() < deadline) {