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