(options)
| 274 | failedSubtests = false; |
| 275 | |
| 276 | constructor(options) { |
| 277 | super(options); |
| 278 | this.loc ??= { |
| 279 | __proto__: null, |
| 280 | line: 1, |
| 281 | column: 1, |
| 282 | file: resolve(this.name), |
| 283 | }; |
| 284 | this.timeout = null; |
| 285 | } |
| 286 | |
| 287 | #skipReporting() { |
| 288 | return this.#reportedChildren > 0 && (!this.error || this.error.failureType === kSubtestsFailed); |