Appearance
Skipping Tests
Aire Assert allows tests to be skipped by adding the @ignore or @Ignore tag to the test scenario.
Usage
- Add
@ignoreor@Ignoreto the test annotation to mark it as skipped. - Tests tagged with either
@ignoreor@Ignorewill be excluded from execution during the test run.
Example
gherkin
@ignore
Scenario: This test will be skipped
Given some precondition
When some action is taken
Then expect some resultor
gherkin
@Ignore
Scenario: This test will also be skipped
Given some precondition
When some action is taken
Then expect some result