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