Skip to content

Instantly share code, notes, and snippets.

@jkyoutsey
Created February 11, 2019 14:46
Show Gist options
  • Save jkyoutsey/31e5e0688d389c65cdb1f21efe36a90e to your computer and use it in GitHub Desktop.
Save jkyoutsey/31e5e0688d389c65cdb1f21efe36a90e to your computer and use it in GitHub Desktop.
Angular Coverage Metrics Lie Spec
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CoverageMetricsLieComponent } from './coverage-metrics-lie.component';
describe('CoverageMetricsLieComponent', () => {
let component: CoverageMetricsLieComponent;
let fixture: ComponentFixture<CoverageMetricsLieComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CoverageMetricsLieComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CoverageMetricsLieComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment