This release brings a few improvements to Detox configuration.
Features
The
extends
clause behavior has been documented for relative module paths and aligned to a commonly expectedrequire(...)
behavior:
{
"extends": "../someDir/someBaseDetoxConfig"
}
When added to a Detox config, it makes
detox test
command omit permanent--workers 1
CLI arg passed to Jest by default. This way, you can control your default workers count value programmatically in your Jest config viamaxWorkers: <count>
option. Thanks to @cdavie-weconnect for the initial idea.