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