Skip to content

Commit

Permalink
add --yes to e2e build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliusguzas committed Nov 29, 2024
1 parent 480cef7 commit 4d6e8b0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions packages/app-harness/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"bootstrap": "cd ../.. && yarn bootstrap",
"build:android-test": "npx rnv build -p android -s test -c harness --packageManager yarn --ci --yes -r",
"build:androidtv-test": "npx rnv build -p androidtv -s test -c harness --packageManager yarn --ci --yes -r",
"build:ios-test": "npx rnv build -p ios -s test -c harness --packageManager yarn --ci -r",
"build:macos-test": "npx rnv build -p macos -s test -c harness --packageManager yarn --ci -r",
"build:tvos-test": "npx rnv build -p tvos -s test -c harness --packageManager yarn --ci -r",
"build:ios-test": "npx rnv build -p ios -s test -c harness --packageManager yarn --ci --yes -r",
"build:macos-test": "npx rnv build -p macos -s test -c harness --packageManager yarn --ci --yes -r",
"build:tvos-test": "npx rnv build -p tvos -s test -c harness --packageManager yarn --ci --yes -r",
"e2e:android": "APPIUM_HOME=./ PLATFORM=android JAVA_HOME=$(/usr/libexec/java_home) wdio wdio.conf.cjs",
"e2e:androidtv": "APPIUM_HOME=./ PLATFORM=androidtv JAVA_HOME=$(/usr/libexec/java_home) wdio wdio.conf.cjs",
"e2e:ios": "APPIUM_HOME=./ PLATFORM=ios wdio wdio.conf.cjs",
Expand All @@ -32,8 +32,8 @@
"report:open": "npx allure open reporting/allure-report",
"run:android-test": "npx rnv run -p android -s test -c harness --packageManager yarn --ci --yes -r",
"run:androidtv-test": "npx rnv run -p androidtv -s test -c harness --packageManager yarn --ci --yes -r",
"run:ios-test": "npx rnv run -p ios -s test -c harness --packageManager yarn --ci -r",
"run:tvos-test": "npx rnv run -p tvos -s test -c harness --packageManager yarn --ci -r",
"run:ios-test": "npx rnv run -p ios -s test -c harness --packageManager yarn --ci --yes -r",
"run:tvos-test": "npx rnv run -p tvos -s test -c harness --packageManager yarn --ci --yes -r",
"run:web-test": "npx rnv run -p web -s test -c harness --packageManager yarn --ci",
"start:web-test": "npx rnv start -p web -s test -c harness --packageManager yarn --ci",
"tsc": "tsc --noEmit --composite false",
Expand Down
10 changes: 5 additions & 5 deletions packages/template-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@
"bootstrap": "cd ../.. && yarn bootstrap",
"build:android-test": "npx rnv build -p android -s test -c template --packageManager yarn --ci --yes -r",
"build:androidtv-test": "npx rnv build -p androidtv -s test -c template --packageManager yarn --ci --yes -r",
"build:ios-test": "npx rnv build -p ios -s test -c template --packageManager yarn --ci -r",
"build:macos-test": "npx rnv build -p macos -s test -c template --packageManager yarn --ci -r",
"build:tvos-test": "npx rnv build -p tvos -s test -c template --packageManager yarn --ci -r",
"build:ios-test": "npx rnv build -p ios -s test -c template --packageManager yarn --ci --yes -r",
"build:macos-test": "npx rnv build -p macos -s test -c template --packageManager yarn --ci --yes -r",
"build:tvos-test": "npx rnv build -p tvos -s test -c template --packageManager yarn --ci --yes -r",
"e2e:android": "APPIUM_HOME=./ PLATFORM=android JAVA_HOME=$(/usr/libexec/java_home) wdio wdio.conf.cjs",
"e2e:androidtv": "APPIUM_HOME=./ PLATFORM=androidtv JAVA_HOME=$(/usr/libexec/java_home) wdio wdio.conf.cjs",
"e2e:ios": "APPIUM_HOME=./ PLATFORM=ios wdio wdio.conf.cjs",
Expand All @@ -89,8 +89,8 @@
"report:open": "npx allure open reporting/allure-report",
"run:android-test": "npx rnv run -p android -s test -c template --packageManager yarn --ci --yes -r",
"run:androidtv-test": "npx rnv run -p androidtv -s test -c template --packageManager yarn --ci --yes -r",
"run:ios-test": "npx rnv run -p ios -s test -c template --packageManager yarn --ci -r",
"run:tvos-test": "npx rnv run -p tvos -s test -c template --packageManager yarn --ci -r",
"run:ios-test": "npx rnv run -p ios -s test -c template --packageManager yarn --ci --yes -r",
"run:tvos-test": "npx rnv run -p tvos -s test -c template --packageManager yarn --ci --yes -r",
"run:web-test": "npx rnv run -p web -s test -c template --packageManager yarn --ci",
"start:web-test": "npx rnv start -p web -s test -c template --packageManager yarn --ci",
"tsc": "tsc --noEmit --composite false",
Expand Down

0 comments on commit 4d6e8b0

Please sign in to comment.