Daniel Zlotin 6 년 전
부모
커밋
f1a16a5cc2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      scripts/test.e2e.ios.js

+ 1
- 1
scripts/test.e2e.ios.js 파일 보기

@@ -7,6 +7,6 @@ run();
7 7
 
8 8
 function run() {
9 9
   const conf = release ? `release` : `debug`;
10
-  exec.execSync(`detox build --configuration ios.sim.${conf} && detox test --configuration ios.sim.${conf} ${process.env.CI ? '--cleanup' : ''}`);
10
+  exec.execSync(`detox build --configuration ios.sim.${conf} && detox test --configuration ios.sim.${conf} ${process.env.CI ? '--cleanup' : ''} --loglevel verbose`);
11 11
 }
12 12