From 79bda69d88ebff9dfc9eeb4640531b8a42842eef Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Wed, 21 Aug 2019 13:40:24 -0700 Subject: [PATCH] Renamed DevTools Jest config to be more concistent with others --- package.json | 3 ++- scripts/jest/{config.devtools.js => config.source-devtools.js} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename scripts/jest/{config.devtools.js => config.source-devtools.js} (100%) 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