Join Discord
Powered by
When writing an individual test, you can call it w...
# best-practices
a
adorable-smartphone-87280
07/14/2022, 7:16 PM
When writing an individual test, you can call it with
it.only()
which will prevent your entire spec from running as you make changes. Then just remove the
.only
when you want to commit so your CI picks up all your tests.
Previous
Next