ESLint fix

This commit is contained in:
Rajeh Taher
2021-08-28 00:45:40 +03:00
committed by GitHub
parent 7a8e922696
commit 60761399ca

View File

@@ -349,6 +349,7 @@ END:VCARD`;
expect(msg.vCards[1]).to.match(/BEGIN:VCARD/);
});
});
describe('Get Messages', function() {
it ('can get a message by it\'s ID', async function() {
const chat = await client.getChatById(remoteId);
@@ -357,8 +358,9 @@ END:VCARD`;
expect(messageById).to.exist;
expect(messageById).to.be.instanceOf(Message);
expect(messageById).to.be.equal(message);
})
});
});
describe('Get Chats', function () {
it('can get a chat by its ID', async function () {
const chat = await client.getChatById(remoteId);