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