id | title |
---|---|
Guide.DebuggingInXcode |
Debugging in Xcode During Detox Tests |
This is mostly useful for investigating weird crashes or when contributing to Detox itself. This workflow isn't standard. Don't use it unless you have a good reason.
- Go to
node_modules/detox
and extractDetox-ios-src.tbz
- Drag
Detox-ios-src/Detox.xcodeproj
into your Xcode project - Go to your project settings -> General and add Detox.framework to Embedded Binaries
NOTE: Apps should not be submitted to the App Store with the Detox framework linked. Follow this guide only to debug Detox issues in your project. Once finished, make sure to remove Detox.framework from your project.
Edit the Detox section in package.json
to add the following configuration:
"ios.none": {
"binaryPath": "ios",
"type": "ios.none",
"name": "iPhone 8 Plus",
"session": {
"server": "ws://localhost:8099",
"sessionId": "<your app's bundle identifier>"
}
}
NOTE: This configuration will not handle simulator and application lifecycle, they will have to be performed manually (e.g. running your application from Xcode).
Run the following command in your project root directory:
detox run-server
Run your application from Xcode as you normally do.
NOTE: Before running, place breakpoints you wish to debug.
Run the following command in your project root directory:
detox test --configuration ios.none
NOTE: Tests that call
device.launchApp()
may fail as this API is unavailable when usingios.none
configuration types. Instead, useit.only
to run specific tests and restart your app from Xcode.