标签: angularjs unit-testing
在AngularJs unittest(Jasmine / Karma)中,我们需要放httpBackend.whenGET('/.*/').respond('') 还有一些其他默认值在全局的beforeEach()中响应。
httpBackend.whenGET('/.*/').respond('')
但是,我们得到Error: Injector already created, can not register a module!因为我们还需要在实际测试中模拟其他服务/导入其他模块。
Error: Injector already created, can not register a module!
有没有办法做到这一点?