funky-framadate-front/src/app/features/consultation/consultation-user/consultation-user.component...

25 lines
670 B
TypeScript

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