nycJSorg/angular-presentation

View on GitHub
libs/utils/src/lib/test-results/simple-tests-progress/simple-tests-progress.component.spec.ts

Summary

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

import { SimpleTestsProgressComponent } from './simple-tests-progress.component';

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

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

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

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