* @internal
(context: Context)
| 101 | * @internal |
| 102 | */ |
| 103 | recordInitSpan(context: Context): void { |
| 104 | if (this.#initRecorded) { |
| 105 | return |
| 106 | } |
| 107 | this.#initRecorded = true |
| 108 | this |
| 109 | .startSpan('vitest.runtime.traces', { startTime: this.#initStartTime }, context) |
| 110 | .end(this.#initEndTime) |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * @internal |
no test coverage detected