it('will emit 0 when the bucket has been consumed', () => {
        const bucket = { hits: 100 };
        const remaining = getHitsRemaining(bucket, 100);
        expect(remaining).to.equal(0);
    });