( workload: string | undefined, fn: () => T, )
| 50 | * exactly what the caller passed — including `undefined`. |
| 51 | */ |
| 52 | export function runWithWorkload<T>( |
| 53 | workload: string | undefined, |
| 54 | fn: () => T, |
| 55 | ): T { |
| 56 | return workloadStorage.run({ workload }, fn) |
| 57 | } |
| 58 |
no test coverage detected