Skip to content

Commit 66c9f90

Browse files
committed
skip tests for old node
1 parent 9fac1ce commit 66c9f90

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

scripts/node-unit-tests.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ const NODE_8_SKIP_TESTS_PACKAGES = [
2323
'@sentry/remix',
2424
'@sentry/sveltekit',
2525
'@sentry-internal/replay-worker',
26+
'@sentry/node-experimental',
2627
];
2728

2829
// We have to downgrade some of our dependencies in order to run tests in Node 8 and 10.
@@ -35,10 +36,15 @@ const NODE_8_LEGACY_DEPENDENCIES = [
3536
3637
];
3738

38-
const NODE_10_SKIP_TESTS_PACKAGES = ['@sentry/remix', '@sentry/sveltekit', '@sentry-internal/replay-worker'];
39+
const NODE_10_SKIP_TESTS_PACKAGES = [
40+
'@sentry/remix',
41+
'@sentry/sveltekit',
42+
'@sentry-internal/replay-worker',
43+
'@sentry/node-experimental',
44+
];
3945
const NODE_10_LEGACY_DEPENDENCIES = ['[email protected]', '[email protected]'];
4046

41-
const NODE_12_SKIP_TESTS_PACKAGES = ['@sentry/remix', '@sentry/sveltekit'];
47+
const NODE_12_SKIP_TESTS_PACKAGES = ['@sentry/remix', '@sentry/sveltekit', '@sentry/node-experimental'];
4248
const NODE_12_LEGACY_DEPENDENCIES = ['[email protected]'];
4349

4450
const NODE_14_SKIP_TESTS_PACKAGES = ['@sentry/sveltekit'];

0 commit comments

Comments
 (0)