cypress-qase-reporter 2.0.0-beta.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/changelog.md +12 -0
- package/dist/reporter.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -4,11 +4,10 @@ Publish results simple and easy.
|
|
|
4
4
|
|
|
5
5
|
## How to install
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
To install the latest beta version, run:
|
|
7
|
+
To install the latest version, run:
|
|
9
8
|
|
|
10
9
|
```sh
|
|
11
|
-
npm install -D cypress-qase-reporter
|
|
10
|
+
npm install -D cypress-qase-reporter
|
|
12
11
|
```
|
|
13
12
|
|
|
14
13
|
## Updating from v1
|
package/changelog.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# cypress-qase-reporter@2.0.0
|
|
2
|
+
|
|
3
|
+
## What's new
|
|
4
|
+
|
|
5
|
+
This is the first release in the 2.x series of the Cypress reporter.
|
|
6
|
+
It brings new and more flexible configs, uploading results in parallel with running tests,
|
|
7
|
+
and other powerful features.
|
|
8
|
+
|
|
9
|
+
This changelog entry will be updated soon.
|
|
10
|
+
For more information about the new features and a guide for migration from v1, refer to the
|
|
11
|
+
[reporter documentation](https://github.com/qase-tms/qase-javascript/tree/main/qase-cypress#readme)
|
|
12
|
+
|
|
1
13
|
# cypress-qase-reporter@2.0.0-beta.3
|
|
2
14
|
|
|
3
15
|
Fixed an issue with multiple test runs created when Cypress is running
|
package/dist/reporter.js
CHANGED
|
@@ -62,7 +62,7 @@ class CypressQaseReporter extends mocha_1.reporters.Base {
|
|
|
62
62
|
const config = configLoader.load();
|
|
63
63
|
const { framework, ...composedOptions } = (0, qase_javascript_commons_1.composeOptions)(reporterOptions, config);
|
|
64
64
|
this.screenshotsFolder = framework?.cypress?.screenshotsFolder;
|
|
65
|
-
this.reporter =
|
|
65
|
+
this.reporter = qase_javascript_commons_1.QaseReporter.getInstance({
|
|
66
66
|
...composedOptions,
|
|
67
67
|
frameworkPackage: 'cypress',
|
|
68
68
|
frameworkName: 'cypress',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cypress-qase-reporter",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Qase Cypress Reporter",
|
|
5
5
|
"homepage": "https://github.com/qase-tms/qase-javascript",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"test": "jest --passWithNoTests",
|
|
42
42
|
"clean": "rm -rf dist"
|
|
43
43
|
},
|
|
44
|
-
"author": "
|
|
44
|
+
"author": "Qase Team <support@qase.io>",
|
|
45
45
|
"license": "Apache-2.0",
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"qase-javascript-commons": "^2.0.0
|
|
47
|
+
"qase-javascript-commons": "^2.0.0",
|
|
48
48
|
"uuid": "^9.0.1"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|