Sfoglia il codice sorgente

better test commands

Daniel Zlotin 7 anni fa
parent
commit
f65ad903c7
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2
    2
      playground/scripts/unit.ios.js

+ 2
- 2
playground/scripts/unit.ios.js Vedi File

@@ -22,14 +22,14 @@ function testProject() {
22 22
   shellUtils.exec.execSync(`echo 'travis_fold:start:xcodeunit'`);
23 23
   runWithXcprettyIfPossible(`RCT_NO_LAUNCH_PACKAGER=true
24 24
           cd ios && xcodebuild
25
-            build
25
+            build build-for-testing
26 26
             -scheme "playground"
27 27
             -project playground.xcodeproj
28 28
             -sdk iphonesimulator
29 29
             -configuration Debug`);
30 30
   runWithXcprettyIfPossible(`RCT_NO_LAUNCH_PACKAGER=true
31 31
           cd ios && xcodebuild
32
-            test
32
+            test-without-building
33 33
             -scheme "playground"
34 34
             -project playground.xcodeproj
35 35
             -destination 'platform=iOS Simulator,name=iPhone 7'`);