Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusbsilva137 committed Dec 17, 2024
1 parent 0613965 commit 454cbf8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/meteor/tests/end-to-end/api/livechat/contacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,10 @@ describe('LIVECHAT - contacts', () => {
});

it('should confirm a contact does not exist when checking by email', async () => {
const res = await request.get(api(`omnichannel/contacts.checkExistence`)).set(credentials).query({ email: '[email protected]' });
const res = await request
.get(api(`omnichannel/contacts.checkExistence`))
.set(credentials)
.query({ email: '[email protected]' });

expect(res.status).to.be.equal(200);
expect(res.body).to.have.property('success', true);
Expand Down

0 comments on commit 454cbf8

Please sign in to comment.