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