describe('#unregister()', () => {
    it('removes an exporter from the list', () => {
      const exporterList = new ExporterList([A, B])
      exporterList.unregister(A)
      expect(formats(exporterList)).to.deep.equal(fmtB)