describe('#unregister()', () => {
    it('removes a loader from the list', () => {
      const loaderList = new LoaderList([A, B])
      loaderList.unregister(A)
      expect(types(loaderList)).to.deep.equal(typeB)