-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Support `QaseIgnore` tag. If the test case has the `QaseIgnore` tag, the reporter will not send the result to the Qase TMS. ```cucumber @QaseIgnore Scenario: simple test ``` - Improved error handling.
- Loading branch information
Showing
4 changed files
with
50 additions
and
13 deletions.
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
interface TestMetadata { | ||
Check warning on line 1 in qase-cucumberjs/src/models.ts GitHub Actions / Project qase-cucumberjs - Node 16
Check warning on line 1 in qase-cucumberjs/src/models.ts GitHub Actions / Project qase-cucumberjs - Node 16
Check warning on line 1 in qase-cucumberjs/src/models.ts GitHub Actions / Project qase-cucumberjs - Node 18
|
||
ids : number[]; | ||
fields : Record<string, string>; | ||
title : string | null; | ||
ids: number[]; | ||
fields: Record<string, string>; | ||
title: string | null; | ||
isIgnore: boolean; | ||
} |
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