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