diff --git a/packages/nestjs/test/sdk.test.ts b/packages/nestjs/test/sdk.test.ts index c6bf7166444d..77d19fa2c797 100644 --- a/packages/nestjs/test/sdk.test.ts +++ b/packages/nestjs/test/sdk.test.ts @@ -1,7 +1,8 @@ +import { beforeEach, describe, expect, it, vi } from 'vitest'; + import * as SentryNode from '@sentry/node'; import { SDK_VERSION } from '@sentry/utils'; -import { vi } from 'vitest'; import { init as nestInit } from '../src/sdk'; const nodeInit = vi.spyOn(SentryNode, 'init'); diff --git a/packages/nestjs/tsconfig.test.json b/packages/nestjs/tsconfig.test.json index fc9e549d35ce..00cada2d8bcf 100644 --- a/packages/nestjs/tsconfig.test.json +++ b/packages/nestjs/tsconfig.test.json @@ -4,9 +4,6 @@ "include": ["test/**/*", "vite.config.ts"], "compilerOptions": { - // should include all types from `./tsconfig.json` plus types for all test frameworks used - "types": ["vitest/globals"] - // other package-specific, test-specific options } }