You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd detox/detox
npm install
npm run build
npm run test-clean
npm run test-install
# don't run this now: npm run test
cd test
npm run e2e
The last line is how end users (not people developing detox itself) will eventually run detox
this means any parameters you want to send need to be designed to make sense there, like: npm run e2e -- --scheme=ios-simulator.release npm run e2e -- --verbose
If you want to improve the scripts for people developing detox, this must come as step 2 after the API for end users is finished and working
The text was updated successfully, but these errors were encountered:
The last line is how end users (not people developing detox itself) will eventually run detox
this means any parameters you want to send need to be designed to make sense there, like:
npm run e2e -- --scheme=ios-simulator.release
npm run e2e -- --verbose
If you want to improve the scripts for people developing detox, this must come as step 2 after the API for end users is finished and working
The text was updated successfully, but these errors were encountered: