Repository is not clean. Please commit or stash any changes before updating.

This commit is contained in:
MiharyR 2021-10-24 11:49:45 +02:00
parent aac0ae7544
commit 4b8edc6552
20 changed files with 23868 additions and 1181 deletions

View file

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