0
ためのカスタム方法:
redireccion() {
this.$state.go('modifyLine', {lineId: this.look()._id});
}
look() {
return Entries.findOne({name: this.entry.name});
}
方法上記のコードでは、私はこのような何かを試してみましたが、私が得た「redireccion」の(外観)okですエラー。
これはコードです:本当に私はこれをテストする方法がわからないので、
describe('redireccion()',() => {
beforeEach(inject(($state) => {
spyOn($state, 'go');
spyOn(controller, 'look');
spyOn(Entries, 'findOne');
}));
it('should be a ... bla bla',() => {
controller.redireccion();
expect($state.go).toHaveBeenCalledWith('modifyLine', {lineId: });
});
});
これは、抜粋したものです。
ありがとうございました!私の問題を解決する;) –
あなたは大歓迎です:) –