it('will emit the full number of hits remaining in the bucket', () => {
        const bucket = { hits: 0 };
        const remaining = getHitsRemaining(bucket, 100);
        expect(remaining).to.equal(100);
    });