()
| 1683 | } |
| 1684 | |
| 1685 | reportStarted() { |
| 1686 | if (this.#reportedSubtest || this.parent === null) { |
| 1687 | return; |
| 1688 | } |
| 1689 | this.#reportedSubtest = true; |
| 1690 | this.parent.reportStarted(); |
| 1691 | this.reporter.start(this.nesting, this.loc, this.name, this.testId, this.parent?.testId, this.tags); |
| 1692 | } |
| 1693 | |
| 1694 | clearExecutionTime() { |
| 1695 | this.startTime = hrtime(); |