Skip to content

Commit b3242e0

Browse files
authored
chore(ci): re-enable Node 24 tests for google-cloud-serverless (#16242)
resolves #16238 The error with the google cloud serverless tests in Node 24 was only happening in Node `24.0.0`, which was fixed in [`24.0.1`](https://github.com/nodejs/node/releases/tag/v24.0.1), so we can safely re-enable everything.
1 parent c59c7c9 commit b3242e0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

scripts/ci-unit-tests.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ const BROWSER_TEST_PACKAGES = [
2929
// Packages that cannot run in Node 18
3030
const SKIP_NODE_18_PACKAGES = ['@sentry/react-router'];
3131

32-
const SKIP_NODE_24_PACKAGES = ['@sentry/google-cloud-serverless'];
33-
3432
function getAllPackages(): string[] {
3533
const { workspaces }: { workspaces: string[] } = JSON.parse(
3634
fs.readFileSync(path.join(process.cwd(), 'package.json'), 'utf-8'),
@@ -65,10 +63,6 @@ function runTests(): void {
6563
if (NODE_VERSION === '18') {
6664
SKIP_NODE_18_PACKAGES.forEach(pkg => ignores.add(pkg));
6765
}
68-
69-
if (NODE_VERSION === '24') {
70-
SKIP_NODE_24_PACKAGES.forEach(pkg => ignores.add(pkg));
71-
}
7266
}
7367

7468
if (RUN_AFFECTED) {

0 commit comments

Comments
 (0)