Skip to content

Commit 3396da2

Browse files
committed
test(e2e, emulator): execute emulator start directly, not via sh
using sh caused problems when executing on linux, though it worked on mac the executable bit is set on the script though and I verified it works when executed directly on both linux and mac
1 parent 2413c6b commit 3396da2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"tests:packager:chrome": "cd tests && node_modules/.bin/react-native start --reset-cache",
2121
"tests:packager:jet": "cd tests && cross-env REACT_DEBUGGER=\"echo nope\" node_modules/.bin/react-native start --no-interactive",
2222
"tests:packager:jet-reset-cache": "cd tests && cross-env REACT_DEBUGGER=\"echo nope\" node_modules/.bin/react-native start --reset-cache --no-interactive",
23-
"tests:emulator:start": "cd ./.github/workflows/scripts && sh ./start-firebase-emulator.sh --no-daemon",
24-
"tests:emulator:start-ci": "cd ./.github/workflows/scripts && sh ./start-firebase-emulator.sh",
23+
"tests:emulator:start": "cd ./.github/workflows/scripts && ./start-firebase-emulator.sh --no-daemon",
24+
"tests:emulator:start-ci": "cd ./.github/workflows/scripts && ./start-firebase-emulator.sh",
2525
"tests:android:build": "cd tests && ./node_modules/.bin/detox build --configuration android.emu.debug",
2626
"tests:android:build-release": "cd tests && ./node_modules/.bin/detox build --configuration android.emu.release",
2727
"tests:android:test": "cd tests && ./node_modules/.bin/detox test --configuration android.emu.debug",

0 commit comments

Comments
 (0)