import { ComponentFixture, TestBed } from '@angular/core/testing'; import { PageStudentDetailComponent } from './page-student-detail.component'; describe('PageStudentDetailComponent', () => { let component: PageStudentDetailComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ declarations: [PageStudentDetailComponent] }); fixture = TestBed.createComponent(PageStudentDetailComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });