Files
codiki-hexagonal/frontend/src/app/pages/login/login.component.spec.ts
Florian THIERRY 13c2cc8118 Add frontend.
2024-03-27 10:28:33 +01:00

24 lines
589 B
TypeScript

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