When writing an individual test, you can call it w...
# best-practices
a
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.