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

24 lines
582 B
TypeScript

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