17 lines
499 B
TypeScript
17 lines
499 B
TypeScript
import { expect } from 'chai';
|
|
import { Client } from '../../../../src/models/client';
|
|
import { HeartbeatHandler } from '../../../../src/messageHandler/handlers';
|
|
|
|
describe('Heartbeat handler', () => {
|
|
it('should update last ping time', () => {
|
|
const client = new Client({ id: 'id', token: '' });
|
|
client.setLastPing(0);
|
|
|
|
const nowTime = new Date().getTime();
|
|
|
|
HeartbeatHandler(client);
|
|
|
|
expect(client.getLastPing()).to.be.closeTo(nowTime, 2);
|
|
});
|
|
});
|