src/app/courses/view-courses/courses-view.component.spec.ts
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CoursesViewComponent } from './courses-view.component';
describe('ViewCoursesComponent', () => {
let component: CoursesViewComponent;
let fixture: ComponentFixture<CoursesViewComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CoursesViewComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CoursesViewComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});