Skip to content

Commit b12304b

Browse files
committed
formatting and linting
1 parent ad7c159 commit b12304b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

packages/core/test/lib/client.test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
SyncPromise,
1313
withMonitor,
1414
} from '../../src';
15-
import { startNewTrace } from '../../src/tracing';
1615
import * as integrationModule from '../../src/integration';
1716
import { _INTERNAL_captureLog } from '../../src/logs/internal';
1817
import { _INTERNAL_captureMetric } from '../../src/metrics/internal';
@@ -2740,7 +2739,7 @@ describe('Client', () => {
27402739

27412740
const returnedResult = withMonitor('test-monitor', callback, {
27422741
schedule: { type: 'crontab', value: '* * * * *' },
2743-
isolateTrace: true
2742+
isolateTrace: true,
27442743
});
27452744

27462745
expect(returnedResult).toBe(result);
@@ -2753,7 +2752,7 @@ describe('Client', () => {
27532752

27542753
const returnedResult = withMonitor('test-monitor', callback, {
27552754
schedule: { type: 'crontab', value: '* * * * *' },
2756-
isolateTrace: false
2755+
isolateTrace: false,
27572756
});
27582757

27592758
expect(returnedResult).toBe(result);
@@ -2766,7 +2765,7 @@ describe('Client', () => {
27662765

27672766
const promise = withMonitor('test-monitor', callback, {
27682767
schedule: { type: 'crontab', value: '* * * * *' },
2769-
isolateTrace: true
2768+
isolateTrace: true,
27702769
});
27712770
await expect(promise).resolves.toEqual(result);
27722771
});

0 commit comments

Comments
 (0)