From 2f5681d4f2174bd01d0035dc280e08a079d1a405 Mon Sep 17 00:00:00 2001 From: Alex Kotliarskyi Date: Wed, 21 Oct 2015 16:36:24 -0700 Subject: [PATCH] Fix e2e tests Internally we don't mirror `scripts` folder from GitHub, which means when importing #3523 changes to `scripts/e2e-test.sh` will not make it to GitHub. This commit contains those changes. --- scripts/e2e-test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/e2e-test.sh b/scripts/e2e-test.sh index 0f48c7e80..c98c4aa24 100755 --- a/scripts/e2e-test.sh +++ b/scripts/e2e-test.sh @@ -15,7 +15,7 @@ export REACT_PACKAGER_LOG="$TEMP/server.log" # To make sure we actually installed the local version # of react-native, we will create a temp file inside the template # and check that it exists after `react-native init` -MARKER=$(mktemp $ROOT/local-cli/generator-ios/templates/main/XXXXXXXX) +MARKER=$(mktemp $ROOT/local-cli/generator-ios/templates/app/XXXXXXXX) function cleanup { EXIT_CODE=$? @@ -64,7 +64,7 @@ react-native init EndToEndTest cd EndToEndTest/ios # Make sure we installed local version of react-native -ls `basename $MARKER` > /dev/null +ls EndToEndTest/`basename $MARKER` > /dev/null flow --retries 10