Bandit v1.1.0
Skipping Tests
It's now possible to skip tests.
From within code by using describe_skip()
or it_skip()
.
From command line by using the --skip=<substring>
option. This will skip all describe()
or it()
whose names contain <substring>
Running Subset of Tests
It's now possible to run a subset of the tests by using the --only=<substring>
command line options. This will only run those describe()
and it()
whose names matches <substring>
.
Spec Reporter
This progress reporter prints out all 'describe' and 'it' together with their execution status, resulting in a summary of all your specifications. The spec reporter can be selected by passing the --reporter=spec
command line option to the bandit executable.