Skip to content

Commit

Permalink
Merge pull request #2 from lukasPan/logs
Browse files Browse the repository at this point in the history
log messages
  • Loading branch information
lukasPan authored Apr 20, 2022
2 parents 0cfae7b + 5f00150 commit 1896448
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jest-reporter-simple-dispatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ class JestReporterSimplePostData {
})
.then(response => {
if (!response.ok) {
console.log(`ERROR jest reporter response: ${response.statusText}`);
console.log(`ERROR in response of jest reporter: ${response.statusText}`);
}
})
.catch(e =>
console.log(`ERROR during jest reporter run: ${e.stack}`)
console.log(`ERROR during run of jest reporter: ${e.stack}`)
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-reporter-simple-dispatcher",
"version": "0.2.0",
"version": "0.2.1",
"description": "Simple jest reporter with post data",
"main": "jest-reporter-simple-dispatcher.js",
"scripts": {
Expand Down

0 comments on commit 1896448

Please sign in to comment.