nycJSorg/angular-presentation

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

Summary

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

import { StackTestComponent } from './stack-test.component';

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

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

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

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