()
| 15 | runTask(profiling); |
| 16 | |
| 17 | async function profiling(): Promise<void> { |
| 18 | await profileCSharp(); |
| 19 | await mergeTraces(profilingOutputFolder); |
| 20 | } |
| 21 | |
| 22 | async function profileCSharp(): Promise<void> { |
| 23 | fs.mkdirSync(path.join(outPath, 'profiling'), { recursive: true }); |
nothing calls this directly
no test coverage detected