При запуске тестов в Angular2 + с использованием Karma и Jasmine и подписке на наблюдаемые, эта подписка (как я понимаю) запускается асинхронно, поэтому тест должен быть заключен в async
или fakeAsync
.
Но мы не используем async
, а не fakeAsync
, тесты пройдены, поэтому мой вопрос: разве код в subscribe
раньше был асинхронным?Почему тест пройден?Что происходит?
hello.component.ts
import { Component, Input, OnInit } from '@angular/core';
import {of} from 'rxjs';
@Component({
selector: 'hello',
template: `<h1>Hello {{name}}!</h1>`,
styles: [`h1 { font-family: Lato; }`]
})
export class HelloComponent implements OnInit {
name: string;
ngOnInit() {
// Subscribing to sayName() to get a name
this.sayName().subscribe(name => this.name = name);
}
sayName() {
return of('Foo');
}
}
hello.component.spec.ts
import { CommonModule } from '@angular/common';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import {HelloComponent} from './hello.component';
describe('HelloComponent', () => {
let fixture: ComponentFixture<HelloComponent>;
let component: HelloComponent;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
CommonModule
],
declarations: [HelloComponent],
providers: [
]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(HelloComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
it('should have foo name', () => {
// Running out of async/fakeAsync
// and asserting we got the name
expect(component.name).toEqual('Foo');
});
});
Вы также можете проверить Stackblitz этот пример.