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