We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 534ba8c commit d916aa3Copy full SHA for d916aa3
packages/core/package.json
@@ -30,7 +30,9 @@
30
"clean:plugin": "expo-module clean plugin",
31
"circularDepCheck": "madge --circular dist/js/index.js && madge --circular metro.js && madge --circular expo.js",
32
"test": "yarn test:sdk && yarn test:tools",
33
- "test:sdk": "npx jest",
+ "test:sdk": "sh -c 'if [ \"$CI\" = \"true\" ]; then yarn test:sdk-ci; else yarn test:sdk-local; fi'",
34
+ "test:sdk-ci": "npx jest",
35
+ "test:sdk-local": "jest --maxWorkers=8",
36
"test:tools": "npx jest --config jest.config.tools.js",
37
"test:watch": "npx jest --watch",
38
"yalc:add:sentry-javascript": "yalc add @sentry/browser @sentry/core @sentry/react @sentry/types",
0 commit comments