Created
February 11, 2019 14:46
-
-
Save jkyoutsey/31e5e0688d389c65cdb1f21efe36a90e to your computer and use it in GitHub Desktop.
Angular Coverage Metrics Lie Spec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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