diff --git a/packages/client/lib/commands/TIME.spec.ts b/packages/client/lib/commands/TIME.spec.ts index 1139d18d53..bbaa7942db 100644 --- a/packages/client/lib/commands/TIME.spec.ts +++ b/packages/client/lib/commands/TIME.spec.ts @@ -10,9 +10,9 @@ describe('TIME', () => { ); }); - // testUtils.testWithClient('client.time', async client => { - // const reply = await client.time(); - // assert.ok(reply instanceof Date); - // assert.ok(typeof reply.microseconds === 'number'); - // }, GLOBAL.SERVERS.OPEN); + testUtils.testWithClient('client.time', async client => { + const reply = await client.time(); + assert.ok(reply instanceof Date); + assert.ok(typeof reply.microseconds === 'number'); + }, GLOBAL.SERVERS.OPEN); });