Skip to content

Commit

Permalink
Add error logging to js ping test
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPolo committed Feb 8, 2023
1 parent feb7ddd commit de740d5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions multidim-interop/js/v0.41/test/ping.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ describe('ping test', () => {
// Wait
await new Promise(resolve => setTimeout(resolve, 1000 * parseInt(timeoutSecs, 10)))
}
} catch (err) {
console.error("unexpected exception in ping test", err)
throw err
} finally {
try {
// We don't care if this fails
Expand Down

0 comments on commit de740d5

Please sign in to comment.