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