nycJSorg/angular-presentation

View on GitHub
libs/utils/src/lib/sandbox-runner/typescript-test-runner/typescript-test-runner.component.spec.ts

Summary

Maintainability
B
6 hrs
Test Coverage
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { TypescriptTestRunnerComponent } from './typescript-test-runner.component';

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

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

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

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