From ee2db707faa8b9ada3e7a668e8a94944f5955a1e Mon Sep 17 00:00:00 2001 From: Joe Haddad Date: Fri, 12 Jan 2018 21:35:25 -0500 Subject: [PATCH] Remove setting of BABEL_ENV --- tasks/e2e-kitchensink.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tasks/e2e-kitchensink.sh b/tasks/e2e-kitchensink.sh index 7b17163ca9e..19421bf3981 100755 --- a/tasks/e2e-kitchensink.sh +++ b/tasks/e2e-kitchensink.sh @@ -151,14 +151,12 @@ E2E_URL="http://localhost:3001" \ REACT_APP_SHELL_ENV_MESSAGE=fromtheshell \ CI=true NODE_PATH=src \ NODE_ENV=development \ - BABEL_ENV=test \ node_modules/.bin/mocha --compilers js:@babel/register --require @babel/polyfill integration/*.test.js # Test "production" environment E2E_FILE=./build/index.html \ CI=true \ NODE_PATH=src \ NODE_ENV=production \ - BABEL_ENV=test \ PUBLIC_URL=http://www.example.org/spa/ \ node_modules/.bin/mocha --compilers js:@babel/register --require @babel/polyfill integration/*.test.js @@ -204,14 +202,12 @@ E2E_URL="http://localhost:3002" \ REACT_APP_SHELL_ENV_MESSAGE=fromtheshell \ CI=true NODE_PATH=src \ NODE_ENV=development \ - BABEL_ENV=test \ node_modules/.bin/mocha --compilers js:@babel/register --require @babel/polyfill integration/*.test.js # Test "production" environment E2E_FILE=./build/index.html \ CI=true \ NODE_ENV=production \ - BABEL_ENV=test \ NODE_PATH=src \ PUBLIC_URL=http://www.example.org/spa/ \ node_modules/.bin/mocha --compilers js:@babel/register --require @babel/polyfill integration/*.test.js