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