()
| 143 | } |
| 144 | |
| 145 | async recordInitialState() { |
| 146 | const excludeFields = this.getExcludedFields({ initialSnapshot: true }); |
| 147 | this.initialState = await takeSnapshot( |
| 148 | this.context.thatMark, |
| 149 | this.context.sourceMark, |
| 150 | excludeFields, |
| 151 | this.getMarks() |
| 152 | ); |
| 153 | } |
| 154 | |
| 155 | async recordFinalState(returnValue: unknown) { |
| 156 | const excludeFields = this.getExcludedFields(); |
no test coverage detected