(returnValue: unknown)
| 153 | } |
| 154 | |
| 155 | async recordFinalState(returnValue: unknown) { |
| 156 | const excludeFields = this.getExcludedFields(); |
| 157 | this.returnValue = returnValue; |
| 158 | this.finalState = await takeSnapshot( |
| 159 | this.context.thatMark, |
| 160 | this.context.sourceMark, |
| 161 | excludeFields, |
| 162 | this.isHatTokenMapTest ? this.getMarks() : undefined |
| 163 | ); |
| 164 | } |
| 165 | |
| 166 | filterMarks(command: TestCaseCommand, context: TestCaseContext) { |
| 167 | const marksToCheck = context.targets.map(extractTargetKeys).flat(); |
no test coverage detected