File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 105
105
"postinstall" : " node node_modules/fbjs-scripts/node/check-dev-engines.js package.json" ,
106
106
"test" : " cross-env NODE_ENV=development jest --config ./scripts/jest/config.source.js" ,
107
107
"test-prod" : " cross-env NODE_ENV=production jest --config ./scripts/jest/config.source.js" ,
108
- "test-bundles" : " cross-env NODE_ENV=development jest --config ./scripts/jest/config.bundles.js" ,
109
- "test-bundles-prod" : " cross-env NODE_ENV=production jest --config ./scripts/jest/config.bundles.js" ,
108
+ "test-prod-build" : " yarn test-build-prod" ,
109
+ "test-build" : " cross-env NODE_ENV=development jest --config ./scripts/jest/config.build.js" ,
110
+ "test-build-prod" : " cross-env NODE_ENV=production jest --config ./scripts/jest/config.build.js" ,
110
111
"flow" : " node ./scripts/tasks/flow.js" ,
111
112
"prettier" : " node ./scripts/prettier/index.js write-changed" ,
112
113
"prettier-all" : " node ./scripts/prettier/index.js write" ,
Original file line number Diff line number Diff line change 21
21
22
22
if [ $(( 2 % CIRCLE_NODE_TOTAL)) -eq " $CIRCLE_NODE_INDEX " ]; then
23
23
COMMANDS_TO_RUN+=(' ./scripts/circleci/build.sh' )
24
- COMMANDS_TO_RUN+=(' yarn test-bundles --runInBand' )
25
- COMMANDS_TO_RUN+=(' yarn test-bundles -prod --runInBand' )
24
+ COMMANDS_TO_RUN+=(' yarn test-build --runInBand' )
25
+ COMMANDS_TO_RUN+=(' yarn test-build -prod --runInBand' )
26
26
fi
27
27
28
28
if [ $(( 3 % CIRCLE_NODE_TOTAL)) -eq " $CIRCLE_NODE_INDEX " ]; then
File renamed without changes.
You can’t perform that action at this time.
0 commit comments