it('will emit 0 when the clock has run over', () => {
        const bucket = { createdAt: new Date(0) };
        clock.tick(2000);
        const ttl = getTimeUntilReset(bucket, 1);
        expect(ttl).to.equal(0);