Skip to content

Commit

Permalink
hotfix console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
tapan0212 committed Oct 27, 2020
1 parent 522eadb commit 3769d92
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export const handler = async (event, context, callback) =>
throw new Error('Request Id Missing!');
}
const res = await getDB().offices.findOne({ where: { id: officeId }, raw: true });
console.log({ res });
return success(callback, {
status: 200,
body: JSON.stringify({ res })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ describe('get-uuid', () => {
it('should get a new UUID', async () => {
const response = await handler();
const body = JSON.parse(response.body);
console.log({ body });
expect(body.uuid).toEqual(CONSTANTS.uuid);
});
});

0 comments on commit 3769d92

Please sign in to comment.