deploiement sur VM

This commit is contained in:
Alexandre Chevalier
2026-02-13 23:37:08 +01:00
parent e37f99144b
commit 2291a85b79
142 changed files with 322045 additions and 208 deletions

View File

@@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ModalPollClosComponent } from './modal-poll-clos.component';
describe('ModalPollClosComponent', () => {
let component: ModalPollClosComponent;
let fixture: ComponentFixture<ModalPollClosComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ModalPollClosComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(ModalPollClosComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});