import { ComponentFixture, TestBed } from '@angular/core/testing'; import { AllCoursesComponent } from './all-courses.component'; describe('AllCoursesComponent', () => { let component: AllCoursesComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ AllCoursesComponent ] }) .compileComponents(); fixture = TestBed.createComponent(AllCoursesComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });