Skip to content

Commit 110e338

Browse files
committed
cd: ignore react on node 6
1 parent 3cf67f9 commit 110e338

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

packages/react/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@
6666
"^.+\\.ts$": "ts-jest",
6767
"^.+\\.tsx$": "ts-jest"
6868
},
69-
"transformIgnorePatterns": [
70-
"node_modules/(?!(@testing-library)/)"
71-
],
7269
"moduleFileExtensions": [
7370
"js",
7471
"ts",

scripts/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ 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" # latest version of karma doesn't run on node 6
11+
yarn test --ignore="@sentry/browser" --ignore="@sentry/integrations" --ignore="@sentry/react" # latest version of karma doesn't run on node 6
1212
else
1313
yarn install
1414
yarn build

0 commit comments

Comments
 (0)