Skip to content

Commit 5417ded

Browse files
authored
Update packages/tracing/test/utils.test.ts
1 parent b2ba0ef commit 5417ded

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/tracing/test/utils.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ describe('hasTracingEnabled', () => {
44
const tracesSampler = () => 1;
55
const tracesSampleRate = 1;
66
it.each([
7-
['No options', undefined, false],
8-
['No tracesSampler or tracesSampleRate', {}, false],
9-
['With tracesSampler', { tracesSampler }, true],
10-
['With tracesSampleRate', { tracesSampleRate }, true],
11-
['With tracesSampler and tracesSampleRate', { tracesSampler, tracesSampleRate }, true],
7+
['no options', undefined, false],
8+
['no tracesSampler or tracesSampleRate', {}, false],
9+
['with tracesSampler', { tracesSampler }, true],
10+
['with tracesSampleRate', { tracesSampleRate }, true],
11+
['with tracesSampler and tracesSampleRate', { tracesSampler, tracesSampleRate }, true],
1212
])(
1313
'%s',
1414
(_: string, input: Parameters<typeof hasTracingEnabled>[0], output: ReturnType<typeof hasTracingEnabled>) => {

0 commit comments

Comments
 (0)