«angular-test» 태그된 질문

2
Angular 2 테스트-비동기 함수 호출-사용시기
Angular 2에서 테스트 할 때 TestBed 에서 비동기 기능을 언제 사용 합니까? 언제 사용합니까? beforeEach(() => { TestBed.configureTestingModule({ declarations: [MyModule], schemas: [NO_ERRORS_SCHEMA], }); }); 그리고 언제 이것을 사용합니까? beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [MyModule], schemas: [NO_ERRORS_SCHEMA], }); })); 누구든지 이것에 대해 나를 깨달을 수 있습니까?
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.