Skip to content

Commit

Permalink
feat: removed console log stmts
Browse files Browse the repository at this point in the history
  • Loading branch information
NithinKuruba committed Jan 5, 2024
1 parent a4090ee commit 3ae280f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lambda/__tests__/08.emails-for-team-requests.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,14 +151,11 @@ describe('integration email updates for teams', () => {
});
expect(integrationRes.status).toEqual(200);
let integration = integrationRes.body;
console.log('🚀 ~ file: 08.emails-for-team-requests.test.ts:154 ~ it.only ~ integration:', integration);

const template = await renderTemplate(EMAILS.CREATE_INTEGRATION_APPLIED, {
integration,
});

console.log('🚀 ~ file: 08.emails-for-team-requests.test.ts:169 ~ it ~ emailList:', emailList);

expect(emailList.length).toEqual(2);
expect(emailList[1].subject).toEqual(template.subject);
expect(emailList[1].body).toEqual(template.body);
Expand Down

0 comments on commit 3ae280f

Please sign in to comment.