(projectRoot: string, relPath: string)
| 864 | * test runtime, where the registry is intentionally not populated). |
| 865 | */ |
| 866 | export function __emitWatchEventForTests(projectRoot: string, relPath: string): boolean { |
| 867 | const w = liveWatchersForTests.get(projectRoot); |
| 868 | if (!w) return false; |
| 869 | w.ingestEventForTests(relPath); |
| 870 | return true; |
| 871 | } |
no test coverage detected