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