nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/webassembly/ca/single-grid/single-grid.component.spec.ts

Summary

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

import { SingleGridComponent } from './single-grid.component';

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

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

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

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