0
我是服務器端測試平臺的初學者。簡介我創建了一個稱爲執行HTTP的工廠的服務。 所以我想明白爲什麼這個錯誤:mean.js意外的請求:GET圖像
Unexpected request: GET images No more request expected at $httpBackend (/home/developer/mcd2/public/lib/angular-mocks/angular-mocks.js:1181)
-----MOCK-----
beforeEach(inject(function($controller, $rootScope, _$location_, _$stateParams_, _$httpBackend_,$filter,_Images_) {
// Set a new global scope
scope = $rootScope.$new();
// Point global variables to injected services
$stateParams = _$stateParams_;
$httpBackend = _$httpBackend_;
}
it('Test that takes the complete list of all the images in the DB (Images.get)',inject(function (ImagesREST) {
var Image = new ImagesREST({
namefile: 'Image_1',
width: 123,
height : 321,
extension : 'JPG',
tag : 'pippo',
size:9998,
type:'img/jpg',
path:'/asd/add',
rel:'/asd/Immagine1',
lastModified:new Date()
});
var arrayImages=[Image];
$httpBackend.expectGET('images').respond(arrayImages);
var lista = Images.get();
$httpBackend.flush();
console.log(lista);
}));
謝謝!