Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Это архивный репозиторий. Вы можете его клонировать или просматривать файлы, но не вносить изменения или открывать задачи/запросы на слияние.
|
- 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();
- });
- });
|