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