cypress-qase-reporter 2.1.0-beta.2 → 2.1.0-beta.3

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 CHANGED
@@ -1,3 +1,9 @@
1
+ # cypress-qase-reporter@2.1.0-beta.3
2
+
3
+ ## What's new
4
+
5
+ Fixed an issue with the reporter completing the test run after each file with tests.
6
+
1
7
  # cypress-qase-reporter@2.1.0-beta.1
2
8
 
3
9
  ## 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.publish();
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-beta.2",
3
+ "version": "2.1.0-beta.3",
4
4
  "description": "Qase Cypress Reporter",
5
5
  "homepage": "https://github.com/qase-tms/qase-javascript",
6
6
  "sideEffects": false,