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