(filepath: string)
| 111 | } |
| 112 | |
| 113 | getSnapshotState(filepath: string): SnapshotState { |
| 114 | const state = this.snapshotStateMap.get(filepath) |
| 115 | if (!state) { |
| 116 | throw new Error( |
| 117 | `The snapshot state for '${filepath}' is not found. Did you call 'SnapshotClient.setup()'?`, |
| 118 | ) |
| 119 | } |
| 120 | return state |
| 121 | } |
| 122 | |
| 123 | match(options: AssertOptions): MatchResult { |
| 124 | const { |
no test coverage detected