()
| 187 | } |
| 188 | |
| 189 | removeUncheckedKeys(): void { |
| 190 | if (this._updateSnapshot === 'all' && this._uncheckedKeys.size > 0) { |
| 191 | this._dirty = true; |
| 192 | for (const key of this._uncheckedKeys) delete this._snapshotData[key]; |
| 193 | this._uncheckedKeys.clear(); |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | match({ |
| 198 | testName, |
no test coverage detected