(filepath: string, testId: string)
| 106 | } |
| 107 | |
| 108 | clearTest(filepath: string, testId: string): void { |
| 109 | const state = this.getSnapshotState(filepath) |
| 110 | state.clearTest(testId) |
| 111 | } |
| 112 | |
| 113 | getSnapshotState(filepath: string): SnapshotState { |
| 114 | const state = this.snapshotStateMap.get(filepath) |
no test coverage detected