我正在嘗試使用Karma執行單元測試。根據文檔,我已經完成了所有工作。當我編寫測試的這部分後,它從不會調用最後兩個函數。單元測試與Karma不調用函數
it('should create the mock object', function (done) {
service.createObj(mockObj)
.then(test)
.catch(failTest)
.finally(done);
});
var test = function() {
expect(2).toEqual(1);
};
var failTest = function(error) {
expect(2).toEqual(1);
};
在控制檯中的任何錯誤? –