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