nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/regex/live/live-mock/live-mock.component.spec.ts

Summary

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

import { LiveMockComponent } from './live-mock.component';

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

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

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

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