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