ソースを参照

try fix travis

Daniel Zlotin 6 年 前
コミット
a55128a0bc
共有1 個のファイルを変更した2 個の追加0 個の削除を含む
  1. 2
    0
      scripts/test.e2e.ios.js

+ 2
- 0
scripts/test.e2e.ios.js ファイルの表示

@@ -9,9 +9,11 @@ function run() {
9 9
   try {
10 10
     const conf = release ? `release` : `debug`;
11 11
     exec.execSync(`detox build --configuration ios.sim.${conf}`);
12
+
12 13
     exec.execAsync(`sleep 10`).then(() => {
13 14
       exec.execAsync(`open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app`);
14 15
     });
16
+
15 17
     startRecording();
16 18
     exec.execSync(`detox test --configuration ios.sim.${conf} ${process.env.CI ? '--cleanup' : ''}`);
17 19
   } finally {