You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue :
There is an option to skip test suites by using skip or xdescribe but when the test runner is jest then irrespective of the keyword (skip or xdescribe) the app gets initiated for every test suite i.e. if there are 10 test suites and 9 have skipped then also the app is getting initiated for 10 times for each suite.
Needed Solution :
Detox should not initiate the app for every test suites only for those where the execution is needed or test suites which are included in test execution.
The text was updated successfully, but these errors were encountered:
Detox does not control the lifecycle, it merely suplies init and cleanup functions. What you describe is impossible to solve in Detox, and is actually an issue of Jest (there are a few open issues in Jest regarding that).
You can always usedetox test -f filePath flag on Detox command line for more fine-grained runs.
Issue :
There is an option to skip test suites by using skip or xdescribe but when the test runner is jest then irrespective of the keyword (skip or xdescribe) the app gets initiated for every test suite i.e. if there are 10 test suites and 9 have skipped then also the app is getting initiated for 10 times for each suite.
Needed Solution :
Detox should not initiate the app for every test suites only for those where the execution is needed or test suites which are included in test execution.
The text was updated successfully, but these errors were encountered: