Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.
|
- import { async, ComponentFixture, TestBed } from '@angular/core/testing';
-
- import { CourseDetailsComponent } from './course-details.component';
-
- describe('CourseDetailsComponent', () => {
- let component: CourseDetailsComponent;
- let fixture: ComponentFixture<CourseDetailsComponent>;
-
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ CourseDetailsComponent ]
- })
- .compileComponents();
- }));
-
- beforeEach(() => {
- fixture = TestBed.createComponent(CourseDetailsComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|