No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Este repositorio está archivado. Puede ver los archivos y clonarlo, pero no puede subir cambios o reportar incidencias ni pedir Pull Requests.
|
- 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();
- });
- });
|