Domande taggate «karma-jasmine»

11
Test angolari falliti con Impossibile eseguire 'send' su 'XMLHttpRequest'
Sto provando a testare il mio componente angolare 4.1.0 - export class CellComponent implements OnInit { lines: Observable<Array<ILine>>; @Input() dep: string; @Input() embedded: boolean; @Input() dashboard: boolean; constructor( public dataService: CellService, private route: ActivatedRoute, private router: Router, private store: Store<AppStore>) { } } Tuttavia, un semplice test "dovrebbe creare" genera …


2
"Errore: nessun provider per il router" durante la scrittura di casi di unit test Karma-Jasmine
Abbiamo creato un progetto angular2 e all'interno di questo abbiamo creato un modulo (my-module) e all'interno di quel modulo abbiamo creato un componente (my-new-component) utilizzando i seguenti comandi cmd: ng new angular2test cd angular2test ng g module my-module ng generate component my-new-component Dopo aver creato la configurazione e tutti i …







2
Angular 2 Testing - Chiamata di funzione asincrona - quando usare
Quando usi la funzione asincrona nel TestBed durante i test in Angular 2? Quando lo usi? beforeEach(() => { TestBed.configureTestingModule({ declarations: [MyModule], schemas: [NO_ERRORS_SCHEMA], }); }); E quando lo usi? beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [MyModule], schemas: [NO_ERRORS_SCHEMA], }); })); Qualcuno può illuminarmi su questo?
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.