Skip to content

Commit 9ee6705

Browse files
committed
test: Streamline test ignoring
1 parent 8527fe8 commit 9ee6705

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const SKIP_BROWSER_TESTS_PACKAGES = [
2828
'@sentry/angular',
2929
'@sentry/svelte',
3030
'@sentry/replay',
31+
'@sentry/wasm',
3132
];
3233

3334
// These can be skipped when running tests independently of the Node version.
@@ -49,10 +50,10 @@ const NODE_8_LEGACY_DEPENDENCIES = [
4950
5051
];
5152

52-
const NODE_10_SKIP_TESTS_PACKAGES = [...DEFAULT_SKIP_TESTS_PACKAGES, '@sentry/remix', '@sentry/replay'];
53+
const NODE_10_SKIP_TESTS_PACKAGES = ['@sentry/remix', '@sentry/replay'];
5354
const NODE_10_LEGACY_DEPENDENCIES = ['[email protected]'];
5455

55-
const NODE_12_SKIP_TESTS_PACKAGES = [...DEFAULT_SKIP_TESTS_PACKAGES, '@sentry/remix'];
56+
const NODE_12_SKIP_TESTS_PACKAGES = ['@sentry/remix'];
5657

5758
type JSONValue = string | number | boolean | null | JSONArray | JSONObject;
5859

0 commit comments

Comments
 (0)