()
| 176 | } |
| 177 | |
| 178 | writeSnapshotFiles() { |
| 179 | if (!this.updateSnapshots) { |
| 180 | debug('skipping write of snapshot files'); |
| 181 | return; |
| 182 | } |
| 183 | |
| 184 | this.cache.forEach((snapshotFile) => { |
| 185 | snapshotFile.writeFile(); |
| 186 | }); |
| 187 | } |
| 188 | |
| 189 | createAssert() { |
| 190 | const manager = this; |
no test coverage detected