Import des sources angular à partir de 'headup_app'

This commit is contained in:
Rampeur
2025-08-11 23:26:29 +02:00
parent 7dcb426ef5
commit 0a6cbc0c00
335 changed files with 64362 additions and 0 deletions
@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CanopiesModelsComponent } from './canopies-models.component';
describe('CanopiesModelsComponent', () => {
let component: CanopiesModelsComponent;
let fixture: ComponentFixture<CanopiesModelsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [CanopiesModelsComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CanopiesModelsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});