0
我有一個下面的代碼段(簡體):單元測試AngularJs茉莉:然後 - 捕測試問題
angular
.module('myApp')
.controller('MyController', MyController);
function MyController(wordService) {
getWord();
function getWord() {
return wordService.getNextWord()
.then(doSomethingWithWord)
.catch(doSomethingFailure);
function doSomethingWithWord(response) {
// ... something
}
function doSomethingFailure() {
// ... failing
}
}
}
我就來測試一下。 ? 我這個奮鬥過了一天,現在我無法得到它的工作:(
如何測試該代碼