* Resolves once the file watcher has installed its watch set. Useful for * tests that need a deterministic boundary before asserting on * `getPendingFiles()`. Resolves immediately when no watcher is active.
(timeoutMs?: number)
| 1134 | * `getPendingFiles()`. Resolves immediately when no watcher is active. |
| 1135 | */ |
| 1136 | waitUntilWatcherReady(timeoutMs?: number): Promise<void> { |
| 1137 | return this.watcher ? this.watcher.waitUntilReady(timeoutMs) : Promise.resolve(); |
| 1138 | } |
| 1139 | |
| 1140 | /** |
| 1141 | * Get files that have changed since last index |
no test coverage detected