Skip to content

Commit

Permalink
Fix e2e tests
Browse files Browse the repository at this point in the history
Internally we don't mirror `scripts` folder from GitHub, which means
when importing facebook#3523 changes to `scripts/e2e-test.sh` will not make it to
GitHub. This commit contains those changes.
  • Loading branch information
frantic committed Oct 21, 2015
1 parent d061de1 commit 2f5681d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/e2e-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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=$?
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 2f5681d

Please sign in to comment.