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
For test performance, we split our suite into acceptance and unit tests. We do this because acceptance spec require static assets to be built, which takes a decent amount of time which, whereas unit specs can be run instantly. We accomplish this with RSpec tags. For example, here is how we run our acceptance tests using rspec-queue:
In order to use rspecq, we need to mimic this functionality. As of now, it does not seem like rspecq supports example filtering, is this right? If not, would it be possible to support this use case?
The text was updated successfully, but these errors were encountered:
Right, currently we don't support passing tags, simply because we haven't encountered the need to. It's certainly a valid feature though. I guess it would involve somehow passing the tags argument in here, similar to how we pass --format:
For test performance, we split our suite into
acceptance
andunit
tests. We do this becauseacceptance
spec require static assets to be built, which takes a decent amount of time which, whereasunit
specs can be run instantly. We accomplish this with RSpec tags. For example, here is how we run ouracceptance
tests using rspec-queue:In order to use rspecq, we need to mimic this functionality. As of now, it does not seem like rspecq supports example filtering, is this right? If not, would it be possible to support this use case?
The text was updated successfully, but these errors were encountered: