【发布时间】:2017-06-05 02:21:35
【问题描述】:
我是 Angular 单元测试的新手。我得到了带有代码覆盖率的 karma 设置以及 angular-cli 。我已经运行了命令 ng-test 并打开了代码覆盖率报告。我在该覆盖率报告中看到了1x、3x 等以及我的代码行号。请找到我的报道图片。
这是我的测试用例代码app.component.spec.ts
/* tslint:disable:no-unused-variable */
import { TestBed, async } from '@angular/core/testing';
import { AppComponent } from './app.component';
describe('AppComponent', () => {
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [
AppComponent
],
});
});
it('should create the app', async(() => {
let fixture = TestBed.createComponent(AppComponent);
let app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
}));
it(`should have as title 'app works!'`, async(() => {
let fixture = TestBed.createComponent(AppComponent);
let app = fixture.debugElement.componentInstance;
expect(app.title).toEqual('app works!');
}));
it('should render title in a h1 tag', async(() => {
let fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
let compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('h1').textContent).toContain('app works!');
}));
});
我不明白我的代码报告中 1x,2x,3x 等的重要性。请帮助我了解它的重要性。
【问题讨论】:
标签: javascript unit-testing angular istanbul karma-coverage