Domande taggate «angular2-testing»

2
test angular2: impossibile eseguire il binding a "ngModel" poiché non è una proprietà nota di "input"
Sto cercando di testare l'associazione a due vie angolare2 per il controllo input. Ecco l'errore: Can't bind to 'ngModel' since it isn't a known property of 'input'. Il file app.component.html <input id="name" type="text" [(ngModel)]="name" /> <div id="divName">{{name}}</div> L'app.component.ts @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent implements OnInit { …

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.