(filepath: string)
| 94 | } |
| 95 | |
| 96 | async finish(filepath: string): Promise<SnapshotResult> { |
| 97 | const state = this.getSnapshotState(filepath) |
| 98 | const result = await state.pack() |
| 99 | this.snapshotStateMap.delete(filepath) |
| 100 | return result |
| 101 | } |
| 102 | |
| 103 | skipTest(filepath: string, testName: string): void { |
| 104 | const state = this.getSnapshotState(filepath) |
nothing calls this directly
no test coverage detected