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