nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/webassembly/full-screen-runner/full-screen-runner.component.spec.ts

Summary

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

import { FullScreenRunnerComponent } from './full-screen-runner.component';

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

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

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

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