Skip to content

Commit

Permalink
server debugging added
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-atul committed Aug 14, 2022
1 parent 2f0d184 commit 168a00f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/env/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,11 @@ export const init = async (getSignedUrl: fileSignFunction) => {
await server.initialize();
return server;
};

process.on('unhandledRejection', (err) => {
console.log(err);
});

process.on('uncaughtException', (err) => {
console.log(err);
});

0 comments on commit 168a00f

Please sign in to comment.