-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a07ec0
commit eb1daec
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
title: 1.6.0 Released | ||
author: phillcunnington | ||
--- | ||
|
||
**Cuppa 1.6.0 is now available.** | ||
|
||
This release adds a new method to the `Runner`, `#getExitCode` that can be called after a test run | ||
to determine the overall status of the test run. | ||
|
||
The following list specifies the order in which the exit code is determined: | ||
* If no tests are run the exit code will be `4` | ||
* If any block, test hook or test fails the exit code will be `1` | ||
* If any test is skipped the exit code will be `2` | ||
* If any test is pending the exit code will be `3` | ||
* If none of the above the exit code will be `0` | ||
|
||
Check out [the release](https://github.com/cuppa-framework/cuppa/releases/tag/v1.6.0). |