Skip to content
Snippets Groups Projects
jobspec-execution.component.spec.ts 695 B
Newer Older
import {async, ComponentFixture, TestBed} from '@angular/core/testing';

import {JobspecExecutionComponent} from './jobspec-execution.component';

describe('JobspecExecutionComponent', () => {
  let component: JobspecExecutionComponent;
  let fixture: ComponentFixture<JobspecExecutionComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [JobspecExecutionComponent]
    })
      .compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(JobspecExecutionComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});