Skip to content

Commit

Permalink
fix: completing the test run
Browse files Browse the repository at this point in the history
Fixed an issue with the reporter completing the test run after each file with tests.
  • Loading branch information
gibiw committed Aug 6, 2024
1 parent f45eef5 commit c4641d0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions qase-cypress/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [email protected]

## What's new

Fixed an issue with the reporter completing the test run after each file with tests.

# [email protected]

## What's new
Expand Down
2 changes: 1 addition & 1 deletion qase-cypress/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cypress-qase-reporter",
"version": "2.1.0-beta.2",
"version": "2.1.0-beta.3",
"description": "Qase Cypress Reporter",
"homepage": "https://github.com/qase-tms/qase-javascript",
"sideEffects": false,
Expand Down
2 changes: 1 addition & 1 deletion qase-cypress/src/child.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const runChild = async () => {
const reporter = QaseReporter.getInstance(options);
reporter.setTestResults(results);

await reporter.publish();
await reporter.sendResults();
};

runChild();

0 comments on commit c4641d0

Please sign in to comment.