(projectRoot: string, relPath: string)
| 982 | * test runtime, where the registry is intentionally not populated). |
| 983 | */ |
| 984 | export function __emitWatchEventForTests(projectRoot: string, relPath: string): boolean { |
| 985 | const w = liveWatchersForTests.get(projectRoot); |
| 986 | if (!w) return false; |
| 987 | w.ingestEventForTests(relPath); |
| 988 | return true; |
| 989 | } |
no test coverage detected