diff --git a/scripts/ci-unit-tests.ts b/scripts/ci-unit-tests.ts index a86ac0f6358f..2802bde62fa6 100644 --- a/scripts/ci-unit-tests.ts +++ b/scripts/ci-unit-tests.ts @@ -29,8 +29,6 @@ const BROWSER_TEST_PACKAGES = [ // Packages that cannot run in Node 18 const SKIP_NODE_18_PACKAGES = ['@sentry/react-router']; -const SKIP_NODE_24_PACKAGES = ['@sentry/google-cloud-serverless']; - function getAllPackages(): string[] { const { workspaces }: { workspaces: string[] } = JSON.parse( fs.readFileSync(path.join(process.cwd(), 'package.json'), 'utf-8'), @@ -65,10 +63,6 @@ function runTests(): void { if (NODE_VERSION === '18') { SKIP_NODE_18_PACKAGES.forEach(pkg => ignores.add(pkg)); } - - if (NODE_VERSION === '24') { - SKIP_NODE_24_PACKAGES.forEach(pkg => ignores.add(pkg)); - } } if (RUN_AFFECTED) {