diff --git a/package.json b/package.json index 4dbe4b72c8..11368a7402 100644 --- a/package.json +++ b/package.json @@ -102,7 +102,8 @@ "postinstall": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json && node ./scripts/flow/createFlowConfigs.js", "debug-test": "cross-env NODE_ENV=development node --inspect-brk node_modules/.bin/jest --config ./scripts/jest/config.source.js --runInBand", "test": "cross-env NODE_ENV=development jest --config ./scripts/jest/config.source.js", - "test-devtools": "cross-env NODE_ENV=development jest --config ./scripts/jest/config.devtools.js", + "test-devtools": "cross-env NODE_ENV=development jest --config ./scripts/jest/config.source-devtools.js", + "debug-test-devtools": "cross-env NODE_ENV=development node --inspect-brk node_modules/.bin/jest --config ./scripts/jest/config.source-devtools.js --runInBand", "test-persistent": "cross-env NODE_ENV=development jest --config ./scripts/jest/config.source-persistent.js", "debug-test-persistent": "cross-env NODE_ENV=development node --inspect-brk node_modules/.bin/jest --config ./scripts/jest/config.source-persistent.js --runInBand", "test-prod": "cross-env NODE_ENV=production jest --config ./scripts/jest/config.source.js", diff --git a/scripts/jest/config.devtools.js b/scripts/jest/config.source-devtools.js similarity index 100% rename from scripts/jest/config.devtools.js rename to scripts/jest/config.source-devtools.js