The core of our system is essentially complete. We can now write complete test suites and get beautiful reports on-screen.
But there’s one BIG unanswered question that’ll require a serious rethink:
How do we a run a single test?
This is known as focusing on one (or more) test or describe block. The test runner does this by only running tests that are created using it.only rather than it. If no tests are marked as .only, then we run all the tests, just as we do now.
This applies to describe too: if one or more describe