我刚开始使用Karma第一次......在这个tutuorial之后:https://angular.io/docs/ts/latest/guide/testing.html我正在编写简单的测试以检查标题是否正确。我总是得到错误:"没有捕获的浏览器,打开http://localhost:9876/" 。我正在使用Angular 2和打字稿。这些是版本
"@angular/core": "2.4.10"
"jasmine-core": "^2.6.2",
"karma": "^1.7.0".
我的文件夹结构如下所示
mydashboard
-src
-app
-welcome
-welcome.component.ts
-welcome.component.spec.ts
-karma.conf.js
//karma.conf.js
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
files: ["src/app/**/*.spec.ts"
],
exclude: [
],
preprocessors: {
},
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false,
concurrency: Infinity
})
}
//welcome.component.spec.ts
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { WelcomeComponent } from './welcome.component';
describe('WelcomeComponent (inline template)', () => {
let comp: WelcomeComponent;
let fixture: ComponentFixture<WelcomeComponent>;
let de: DebugElement;
let el: HTMLElement;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [ WelcomeComponent ], // declare the test component
});
fixture = TestBed.createComponent(WelcomeComponent);
comp = fixture.componentInstance; // WelcomeComponent test instance
// query for the title <h1> by CSS element selector
de = fixture.debugElement.query(By.css('h1'));
el = de.nativeElement;
});
it('should display original title', () => {
fixture.detectChanges();
expect(el.textContent).toContain(comp.title);
});
});
//welcome.component.ts
import { Component } from '@angular/core';
@Component({
template: '<h1>{{title}}</h1>'
})
export class WelcomeComponent {
title = 'Test Tour of Heroes';
}
答案 0 :(得分:10)
fixture.debugElement.query
的某些调用与expect(...)
的后续调用冲突,导致Jasmine的代码看似无限循环。
例如,当匹配#my-id
的对象存在时,以下内容将导致错误:
expect(fixture.debugElement.query(By.css('#my-id'))).toBeFalsy();
在您的情况下,您有不同的通话组合,但它的配方相同:query
加上一些expect
来电。
作为临时解决方法,我们可以改为使用queryAll(...).length
:
expect(fixture.debugElement.queryAll(By.css('#my-id')).length).toBeFalsy();
这是Jasmine中的一个错误,已在这些页面中报告过: