@nrwl/detox:test
Run detox test options.
Options can be configured in project.json
when defining the executor, or when invoking it. Read more about how to configure targets and executors here: https://nx.dev/configuration/projectjson#targets.
Options
artifactsLocation
Artifacts (logs, screenshots, etc) root directory.
appLaunchArgs
Custom arguments to pass (through) onto the app every time it is launched.
buildTarget
Target which builds the application.
configPath
Specify Detox config file path. If not supplied, detox searches for .detoxrc[.js]
or detox
section in package.json.
captureViewHierarchy
enabled
, disabled
[iOS Only] Capture *.uihierarchy
snapshots on view action errors and device.captureViewHierarchy()
calls.
cleanup
Shutdown simulator when test is over, useful for CI scripts, to make sure detox exists cleanly with no residue
detoxConfiguration
Select a device configuration from your defined configurations, if not supplied, and there's only one configuration, detox will default to it.
deviceName
Override the device name specified in a configuration. Useful for running a single build configuration on multiple devices.
debugSynchronization
Customize how long an action/expectation can take to complete before Detox starts querying the app why it is busy. By default, the app status will be printed if the action takes more than 10s to complete.
deviceLaunchArgs
A list of passthrough-arguments to use when (if) devices (Android emulator / iOS simulator) are launched by Detox.
forceAdbInstall
Due to problems with the adb install command on Android, Detox resorts to a different scheme for install APK's. Setting true will disable that and force usage of adb install
, instead.
gpu
[Android Only] Launch Emulator with the specific -gpu [gpu mode]
parameter.
headless
Android Only] Launch Emulator in headless mode. Useful when running on CI.
inspectBrk
Uses node's --inspect-brk
flag to let users debug the jest/mocha test runner
jestReportSpecs
[Jest Only] Whether to output logs per each running spec, in real-time. By default, disabled with multiple workers.
loglevel
fatal
, error
, warn
, info
, verbose
, trace
Log level: fatal
, error
, warn
, info
, verbose
, trace
.
noColor
Disable colors in log output
runnerConfig
Test runner config file, defaults to e2e/mocha.opts
for mocha and e2e/config.json
for Jest.
recordLogs
failing
, all
, none
Save logs during each test to artifacts directory. Pass failing
to save logs of failing tests only.
recordVideos
failing
, all
, none
Save screen recordings of each test to artifacts directory. Pass failing
to save recordings of failing tests only.
recordPerformance
all
, none
[iOS Only] Save Detox Instruments performance recordings of each test to artifacts directory.
recordTimeline
all
, none
[Jest Only] Record tests and events timeline, for visual display on the chrome://tracing
tool.
retries
[Jest Circus Only] Re-spawn the test runner for individual failing suite files until they pass, or <N>
times at least.
reuse
Reuse existing installed app (do not delete + reinstall) for a faster run.
takeScreenshots
manual
, failing
, all
, none
Save screenshots before and after each test to artifacts directory. Pass failing
to save screenshots of failing tests only.
useCustomLogger
Use Detox' custom console-logging implementation, for logging Detox (non-device) logs. Disabling will fallback to Node.js / test-runner's implementation (e.g. Jest / Mocha).
workers
Specifies number of workers the test runner should spawn, requires a test runner with parallel execution support (Detox CLI currently supports Jest).