2017-11-15 7 views
0

Noch neu zur Entgiftung, versuchen zu verstehen, warum ein Befehl bei package.json funktioniert und anderen nicht.Detox 5.10.0 hängt mit Jest Runner

ReactNative Projekt
[email protected]
eine Detox-Konfiguration:

"jest": { 
    "preset": "react-native", 
    "setupTestFrameworkScriptFile": "./e2e/init.js" 
}, 
"detox": { 
    "configurations": { 
     "ios.sim.debug": { 
      "binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/todoApp.app", 
      "build": "xcodebuild -project ios/todoApp.xcodeproj -scheme todoApp -configuration Debug -sdk iphonesimulator", 
      "type": "ios.simulator", 
      "name": "iPhone X" 
     } 
    } 
} 

Fall 1. Test-Arbeiten.

"scripts": { 
    "test:e2e:ios": "jest e2e" 
} 

Fall 2. Test funktioniert nicht.

"scripts": { 
    "test:e2e:ios": "detox test -r jest -c ios.sim.debug" 
} 

-Test hängen gerade.

Log Schwanz für Fall 2:

rbx 
Timed: animateWithDuration:delay:options:animations:completion: 
Dispatch Queue: com.apple.main-thread 
send: {"type":"currentStatus","params":{},"messageId":27} 
role=tester action=currentStatus (sessionId=6c6513a7-1684-65fd-de53-7b4be949dc5e) 
role=testee action=currentStatusResult (sessionId=6c6513a7-1684-65fd-de53-7b4be949dc5e) 
onMessage: {"type":"currentStatusResult","messageId":27,"params":{"state":"busy","resources":[{"name":"Timed","info":{"endTrackingDate":"Friday, January 2, 1970 at 6:12:58 PM Moscow Standard Time","object":"<NSObject: 0x604000205e80>","name":"animateWithDuration:delay:options:animations:completion:","prettyPrint":"animateWithDuration:delay:options:animations:completion:","duration":0.7256049871444702}},{"name":"Dispatch Queue","info":{"queue":"<OS_dispatch_queue_main: com.apple.main-thread[0x109c7cdc0] = { xref = -2147483648, ref = -2147483648, sref = 1, target = com.apple.root.default-qos.overcommit[0x109c7e300], width = 0x1, state = 0x001ffe9e00000300, dirty, max qos 6, in-flight = 0, thread = 0x303 }>","prettyPrint":"com.apple.main-thread"}}],"messageId":27}} 
    rbx 
Timed: animateWithDuration:delay:options:animations:completion: 
Dispatch Queue: com.apple.main-thread 
send: {"type":"currentStatus","params":{},"messageId":28} 
role=tester action=currentStatus (sessionId=6c6513a7-1684-65fd-de53-7b4be949dc5e) 
role=testee disconnect (sessionId=6c6513a7-1684-65fd-de53-7b4be949dc5e) 

Das Problem Das Problem ist, ich kann nicht erste Fall für mehrere Konfigurationen verwenden (für Android, für ex.)

Am I etwas falsch machen? Könnten Sie bitte einen Blick darauf werfen?

+0

Dies wird gerade bearbeitet. Wir werden bald Updates haben. –

+0

Dies wurde in Detox 6.0.0 behoben – Rotemmiz

Antwort

1

Wie @Rotemmiz sagte, war dies ein fortlaufendes Problem in den 5.X-Versionen der Entgiftung, sollte es in der 6.X-Version gelöst werden.

+0

Jetzt kann ich es in Fall 2 mit "test-runner": "jest" in package.json conf ausführen. Vielen Dank! –