(projectRoot: string, relPath: string)
| 1029 | * test runtime, where the registry is intentionally not populated). |
| 1030 | */ |
| 1031 | export function __emitWatchEventForTests(projectRoot: string, relPath: string): boolean { |
| 1032 | const w = liveWatchersForTests.get(projectRoot); |
| 1033 | if (!w) return false; |
| 1034 | w.ingestEventForTests(relPath); |
| 1035 | return true; |
| 1036 | } |
no test coverage detected