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