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