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