Skip to content

Commit fee0ec2

Browse files
committed
build: Ignore node 6 and 8 for tracing tests
1 parent 6c4e9d5 commit fee0ec2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/test.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ if [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -le 6 ]]; then
88
yarn install --ignore-engines
99
yarn build
1010
nvm use 6
11-
yarn test --ignore="@sentry/browser" --ignore="@sentry/integrations" --ignore="@sentry/react" # latest version of karma doesn't run on node 6
11+
yarn test --ignore="@sentry/browser" --ignore="@sentry/integrations" --ignore="@sentry/react" --ignore="@sentry/tracing" # latest version of karma doesn't run on node 6
12+
elif [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -le 8 ]]; then
13+
yarn install
14+
yarn build
15+
yarn test --ignore="@sentry/tracing"
1216
else
1317
yarn install
1418
yarn build

0 commit comments

Comments
 (0)