(parentSpan: Span)
| 208 | } |
| 209 | |
| 210 | protected async beforeInstall(parentSpan: Span) { |
| 211 | await parentSpan.traceChild('writeInitialFiles').traceAsyncFn(async () => { |
| 212 | await this.writeInitialFiles() |
| 213 | }) |
| 214 | |
| 215 | await parentSpan.traceChild('writeOverrideFiles').traceAsyncFn(async () => { |
| 216 | await this.writeOverrideFiles() |
| 217 | }) |
| 218 | } |
| 219 | |
| 220 | protected async createTestDir({ |
| 221 | skipInstall = false, |
no test coverage detected