it('checks for changing opts not influence on created colorer', () => {
      const ih = new InheritorColorer(opts)
      expect(ih.opts).to.deep.equal(mergedOpts)
      opts.max += 10
      expect(ih.opts.max).to.equal(mergedOpts.max)