-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If the test case has the `ignore` tag, the reporter will not send the result to the Qase TMS. ```ts const q = qase.ignore().create(); test.meta({ ...q })( 'test', async (t) => { await t; }, ); ```
- Loading branch information
Showing
4 changed files
with
56 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
# [email protected] | ||
|
||
## What's new | ||
|
||
Support `ignore` metadata for test cases. If the test case has the `ignore` tag, the reporter will not send the result to the Qase | ||
TMS. | ||
|
||
```ts | ||
const q = qase.ignore().create(); | ||
test.meta({ ...q })( | ||
'test', | ||
async (t) => { | ||
await t; | ||
}, | ||
); | ||
``` | ||
|
||
# [email protected] | ||
|
||
## What's new | ||
|
@@ -8,7 +25,8 @@ Improved error collection. The error stack trace contains more useful debugging | |
|
||
## What's new | ||
|
||
Support group parameters for test cases. You can specify the group parameters in the test case using the following format: | ||
Support group parameters for test cases. You can specify the group parameters in the test case using the following | ||
format: | ||
|
||
```ts | ||
const q = qase.groupParameters({ 'param01': 'value01', 'param02': 'value02' }).create(); | ||
|
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