-
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.
feat: remove QaseID from test names in output
When specifying test names, QaseIDs are now excluded from the final test name. For example, `Example (Qase ID: 1)` will appear as `Example` in the test output.
- Loading branch information
Showing
3 changed files
with
30 additions
and
3 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,17 @@ | ||
# [email protected] | ||
|
||
## What's new | ||
|
||
When specifying test names, QaseIDs are now excluded from the final test name. | ||
|
||
```js | ||
// The test name will be 'Example', not 'Example (Qase ID: 1)' | ||
qase(1,it('Example', () => { | ||
expect(true).to.equal(true); | ||
}) | ||
); | ||
``` | ||
|
||
# [email protected] | ||
|
||
## What's new | ||
|
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 @@ | ||
{ | ||
"name": "cypress-qase-reporter", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"description": "Qase Cypress Reporter", | ||
"homepage": "https://github.com/qase-tms/qase-javascript", | ||
"sideEffects": false, | ||
|
@@ -47,7 +47,7 @@ | |
"author": "Qase Team <[email protected]>", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"qase-javascript-commons": "~2.2.0", | ||
"qase-javascript-commons": "~2.2.3", | ||
"uuid": "^9.0.1" | ||
}, | ||
"peerDependencies": { | ||
|
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