This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/app/beforeConnexion/register/input-interests-register/input-interests-register.component.spec.ts
2021-12-22 12:15:32 +01:00

25 lines
740 B
TypeScript

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