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