describe('.name', () => {
    it("have .name property type 'string'", () => {
      const uColorer = new UniformColorer()
      expect(uColorer).to.have.property('name')
      expect(uColorer.name).to.be.a('string')