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
{{ message }}
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
We have split views for tablets, and that means there are different behaviours, or scenarios, depending on whether you're on tablet or mobile. That means it is somewhat difficult to do e2e testing because of that in the current setup:
I would like to use <title>.tablet.spec.js for tablet specific e2e tests, but jest will pick on it even when executing yarn e2e-iphone, because I cannot specify that jest should ignore tablet.spec.js when executing that command.
Similarly, we could have <title>.phone.spec.js for phone specific e2e tests.
Finally, the tests <title>.spec.js would be general and apply to both phones and tablets.
The way detox can be configured at the moment only allows for one jest config file; it would be nice to allow more.
Any ideas? @tbergq
The text was updated successfully, but these errors were encountered:
Problem
We have split views for tablets, and that means there are different behaviours, or scenarios, depending on whether you're on tablet or mobile. That means it is somewhat difficult to do e2e testing because of that in the current setup:
I would like to use
<title>.tablet.spec.js
for tablet specific e2e tests, butjest
will pick on it even when executingyarn e2e-iphone
, because I cannot specify thatjest
should ignoretablet.spec.js
when executing that command.Similarly, we could have
<title>.phone.spec.js
for phone specific e2e tests.Finally, the tests
<title>.spec.js
would be general and apply to both phones and tablets.The way
detox
can be configured at the moment only allows for onejest
config file; it would be nice to allow more.Any ideas? @tbergq
The text was updated successfully, but these errors were encountered: