我有以下单元测试,由于某种原因,第二个测试使其他测试失败。
beforeEach(inject(function ($rootScope, _$httpBackend_, $controller, $location, mockedResource) {
scope = $rootScope.$new();
httpBackend = _$httpBackend_;
locationService = $location;
ctrlDependencies = {
$scope: scope,
resource: mockedResource,
}
var ctrl = $controller('myController', ctrlDependencies);
}));
it('should redirect to a new page', function() {
scope.pageRedirectFunction();
expect(locationService.path()).toBe('/newpage')
});
it('should delete an epic resource', function() {
httpBackend.expectGET('/api/v1/epic/1').respond({});
httpBackend.expectDELETE('/api/v1/epic/1').respond({});
// Run the deletion function
scope.deleteEpicResource()
httpBackend.flush() // This line seems to be the rebelious one
expect(scope.epicResources.length).toEqual(0)
})
我已经设法找出似乎导致错误的线,这就是httpBackend.flush()
线。为什么刷新功能会导致奇怪的行为?
karma start
我在终端中运行命令得到的实际错误是:
Delaying execution, these browsers are not ready: Chrome 29.0 ....
过了一会儿,Chrome 会话然后崩溃。