Skip to content

Commit 33e746b

Browse files
franticCrash--
authored andcommitted
Fix e2e tests
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.
1 parent 1d64f55 commit 33e746b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/e2e-test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export REACT_PACKAGER_LOG="$TEMP/server.log"
1515
# To make sure we actually installed the local version
1616
# of react-native, we will create a temp file inside the template
1717
# and check that it exists after `react-native init`
18-
MARKER=$(mktemp $ROOT/local-cli/generator-ios/templates/main/XXXXXXXX)
18+
MARKER=$(mktemp $ROOT/local-cli/generator-ios/templates/app/XXXXXXXX)
1919

2020
function cleanup {
2121
EXIT_CODE=$?
@@ -64,7 +64,7 @@ react-native init EndToEndTest
6464
cd EndToEndTest/ios
6565

6666
# Make sure we installed local version of react-native
67-
ls `basename $MARKER` > /dev/null
67+
ls EndToEndTest/`basename $MARKER` > /dev/null
6868

6969
flow --retries 10
7070

0 commit comments

Comments
 (0)