(overrides?: Partial<ProfilerOptions>)
| 19 | |
| 20 | describe('Profiler', () => { |
| 21 | const getProfiler = (overrides?: Partial<ProfilerOptions>) => |
| 22 | new Profiler({ |
| 23 | prefix: 'cp', |
| 24 | track: 'test-track', |
| 25 | ...overrides, |
| 26 | }); |
| 27 | |
| 28 | let profiler: Profiler<Record<string, ActionTrackEntryPayload>>; |
| 29 |