Files
Bonsai-webapp/src/app/projects/projects.spec.ts
T
Cédric OLIVIER c6cd273632 init page projet
2026-05-22 17:48:06 +02:00

23 lines
541 B
TypeScript

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