The exclusivity feature allows you to run only the specified suite or test-case
by appending .only() to the function.
Here’s an example of executing only a particular suite:
Note: All nested suites will still be executed.
Here’s an example of executing an individual test case:
Previous to v3.0.0, .only() used string matching to decide which tests to execute; this is no longer the case.
In v3.0.0 or newer, .only() can be used multiple times to define a subset of tests to run: