nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/stack/stack-game/stack-game.component.spec.ts

Summary

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

import { StackGameComponent } from './stack-game.component';

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

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

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

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