cypress-qase-reporter 2.1.0-beta.2 → 2.1.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/changelog.md +12 -0
- package/dist/child.js +1 -1
- package/package.json +2 -2
package/changelog.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# cypress-qase-reporter@2.1.0
|
|
2
|
+
|
|
3
|
+
## What's new
|
|
4
|
+
|
|
5
|
+
Minor release of the Cypress reporter package
|
|
6
|
+
|
|
7
|
+
# cypress-qase-reporter@2.1.0-beta.3
|
|
8
|
+
|
|
9
|
+
## What's new
|
|
10
|
+
|
|
11
|
+
Fixed an issue with the reporter completing the test run after each file with tests.
|
|
12
|
+
|
|
1
13
|
# cypress-qase-reporter@2.1.0-beta.1
|
|
2
14
|
|
|
3
15
|
## What's new
|
package/dist/child.js
CHANGED
|
@@ -6,6 +6,6 @@ const results = JSON.parse(process.env?.results);
|
|
|
6
6
|
const runChild = async () => {
|
|
7
7
|
const reporter = qase_javascript_commons_1.QaseReporter.getInstance(options);
|
|
8
8
|
reporter.setTestResults(results);
|
|
9
|
-
await reporter.
|
|
9
|
+
await reporter.sendResults();
|
|
10
10
|
};
|
|
11
11
|
runChild();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cypress-qase-reporter",
|
|
3
|
-
"version": "2.1.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Qase Cypress Reporter",
|
|
5
5
|
"homepage": "https://github.com/qase-tms/qase-javascript",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"author": "Qase Team <support@qase.io>",
|
|
47
47
|
"license": "Apache-2.0",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"qase-javascript-commons": "~2.1.0
|
|
49
|
+
"qase-javascript-commons": "~2.1.0",
|
|
50
50
|
"uuid": "^9.0.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|