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
}
}
}
を、私はそれをテストする必要があります。 ? 私は今、一日かけてこれに苦労していると私はそれが
はどのようにこのコードをテストするために