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
I'm having a habit of adding only() to the tests I'm currently working on and sometimes I'm forgetting to remove only() for my tests before comitting my changes. This is somewhat handled in CI, as we use the --ci option, that does not take only() into account. However, this is bad for local development and just in general and should not have been comitted.
Architecture testing is mainly for the App part of the application, but perhaps we could have some test specific methods as well like:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm having a habit of adding
only()
to the tests I'm currently working on and sometimes I'm forgetting to removeonly()
for my tests before comitting my changes. This is somewhat handled in CI, as we use the--ci
option, that does not takeonly()
into account. However, this is bad for local development and just in general and should not have been comitted.Architecture testing is mainly for the App part of the application, but perhaps we could have some test specific methods as well like:
withoutUsingOnly()
withoutSkipping()
withoutTodo()
Beta Was this translation helpful? Give feedback.
All reactions