我希望模擬我在Angular App中構建的服務。我的服務是如下: @Injectable()
export class WizardDialogNavigationService {
public navAction$: Observable<any>;
public navActionSubject: BehaviorSubject<any> = new Behavio
我想嘲笑使用Jasmine JS和Karma的JavaScript中另一個函數內的對象實例化調用。該代碼片段看起來是這樣的: ClassA = function(){
var objB = new ClassB(); // How to fake this call?
function method(){
// Want to test this method
我嘗試茉莉花與moment.js一起選擇,但我得到這個錯誤... debug.js:21 Uncaught TypeError: (0 , _moment.moment) is not a function
不知道如果它與moment.js相關,或者如果我設置不正確。感謝任何幫助。 //script.js
import { moment } from 'moment';
我試圖用如下所述的測試用例來覆蓋我的服務調用。 但是,得到誤差,同時運行ng test如下所示: Failed: this.monthService.getMonthView(...).then is not a function TypeError: this.monthService.getMonthView(...).then is not a function 服務:(MonthServi