From a59a1bfa99b982584f6cbee9a9a0dc074f96608f Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Mon, 18 May 2020 11:14:32 -0300 Subject: [PATCH] npx detox --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b82235d1d..96ae51aa8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,8 +70,8 @@ install-apple-sim-utils: &install-apple-sim-utils rebuild-detox: &rebuild-detox name: Rebuild Detox framework cache command: | - detox clean-framework-cache - detox build-framework-cache + npx detox clean-framework-cache + npx detox build-framework-cache version: 2 jobs: @@ -130,7 +130,7 @@ jobs: - run: name: Build command: | - detox build --configuration ios.sim.release + npx detox build --configuration ios.sim.release - persist_to_workspace: root: . @@ -164,7 +164,7 @@ jobs: - run: name: Test command: | - detox test ./e2e/tests/onboarding --configuration ios.sim.release --cleanup + npx detox test ./e2e/tests/onboarding --configuration ios.sim.release --cleanup - save_cache: *save-npm-cache-mac