From 70f3ca25ae5dd80cd318abf949cda546bbf32694 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sat, 27 May 2017 23:24:45 +0100 Subject: [PATCH 1/3] Revert "Fix wrong path expansion in end-to-end test (#2388)" This reverts commit 2aafaad72d1737eae98c4de9cbe275c1988ec4ae. From 3daf1cbb4549592ad302ff9ba34ef78cb5f48d94 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sat, 27 May 2017 23:24:45 +0100 Subject: [PATCH 2/3] Revert "Suggest just "yarn build" (#2385)" This reverts commit 70bf12505c4419c171aca3e07d7a388bf1dc9cbc. From b01dc340f7d7514270a700ea52badf1a6de3f792 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sat, 27 May 2017 23:24:45 +0100 Subject: [PATCH 3/3] Revert "Catch "No tests found" during CI (#2387)" This reverts commit 5317b3f910d4796dafbf87aa571eebc45cd1b277. --- tasks/e2e-kitchensink.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tasks/e2e-kitchensink.sh b/tasks/e2e-kitchensink.sh index 9d60d6e2935..2295615e8ea 100755 --- a/tasks/e2e-kitchensink.sh +++ b/tasks/e2e-kitchensink.sh @@ -158,16 +158,6 @@ REACT_APP_SHELL_ENV_MESSAGE=fromtheshell \ NODE_ENV=test \ npm test -- --no-cache --testPathPattern="/src/" -# Catch when no tests are detected -testsList=$(REACT_APP_SHELL_ENV_MESSAGE=fromtheshell \ - CI=true \ - NODE_PATH=src \ - npm test -- --no-cache --testPathPattern="/src/" --listTests) - -if [[ ${testsList} =~ "[]" ]]; then - exit 1 -fi - # Test "development" environment tmp_server_log=`mktemp` PORT=3001 \