Skip to content

Commit c9b13e3

Browse files
committed
fix lint
1 parent be6f1b5 commit c9b13e3

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

packages/browser/test/profiling/UIProfiler.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
*/
44

55
import * as Sentry from '@sentry/browser';
6-
import { debug, type Span } from '@sentry/core';
7-
import { afterEach, beforeEach, describe, expect, it, type Mock, vi } from 'vitest';
6+
import { type Span,debug } from '@sentry/core';
7+
import { type Mock, afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
88
import type { BrowserOptions } from '../../src/index';
99

1010
function getBaseOptionsForTraceLifecycle(sendMock: Mock<any>, enableTracing = true): BrowserOptions {

packages/browser/test/sdk.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ describe('init', () => {
241241
if (originalProcess !== undefined) {
242242
globalThis.process = originalProcess;
243243
} else {
244-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
245244
delete (globalThis as any).process;
246245
}
247246
});

packages/browser/test/utils/env.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @vitest-environment jsdom
33
*/
44

5-
import { describe, expect, it, beforeEach, afterEach } from 'vitest';
5+
import { afterEach,beforeEach, describe, expect, it } from 'vitest';
66
import { getEnvValue } from '../../src/utils/env';
77

88
describe('getEnvValue', () => {

0 commit comments

Comments
 (0)