()
| 136 | } |
| 137 | |
| 138 | clear(): void { |
| 139 | this._snapshotData = this._initialData; |
| 140 | this._inlineSnapshots = []; |
| 141 | this._counters = new Map(); |
| 142 | this._index = 0; |
| 143 | this.added = 0; |
| 144 | this.matched = 0; |
| 145 | this.unmatched = 0; |
| 146 | this.updated = 0; |
| 147 | } |
| 148 | |
| 149 | save(): SaveStatus { |
| 150 | const hasExternalSnapshots = Object.keys(this._snapshotData).length; |
no outgoing calls
no test coverage detected