web-dev-qa-db-ja.com

Angular 2ユニットテスト-@ViewChildは未定義

Angular 2ユニットテストを書いています。コンポーネントの初期化後に認識する必要がある_@ViewChild_サブコンポーネントがあります。この場合はTimepickerコンポーネントですng2-bootstrapライブラリ、詳細は関係ありませんが、detectChanges()の後、サブコンポーネントインスタンスは未定義のままです。

擬似コード:

_@Component({
    template: `
        <form>
            <timepicker
                #timepickerChild
                [(ngModel)]="myDate">
            </timepicker>
        </form>
    `
})
export class ExampleComponent implements OnInit {
    @ViewChild('timepickerChild') timepickerChild: TimepickerComponent;
    public myDate = new Date();
}


// Spec
describe('Example Test', () => {
    let exampleComponent: ExampleComponent;
    let fixture: ComponentFixture<ExampleComponent>;

    beforeEach(() => {
        TestBed.configureTestingModel({
            // ... whatever needs to be configured
        });
        fixture = TestBed.createComponent(ExampleComponent);
    });

    it('should recognize a timepicker'. async(() => {
        fixture.detectChanges();
        const timepickerChild: Timepicker = fixture.componentInstance.timepickerChild;
        console.log('timepickerChild', timepickerChild)
    }));
});
_

コンソールログに到達するまで、擬似コードは期待どおりに機能します。 timepickerChildは未定義です。なぜこうなった?

33
ebakunin

うまくいくと思う。たぶん、あなたはあなたの設定でいくつかのモジュールをインポートするのを忘れました。テスト用の完全なコードは次のとおりです。

import { TestBed, ComponentFixture, async } from '@angular/core/testing';

import { Component, DebugElement } from '@angular/core';
import { FormsModule } from '@angular/forms';

import { ExampleComponent } from './test.component';
import { TimepickerModule, TimepickerComponent } from 'ng2-bootstrap/ng2-bootstrap';

describe('Example Test', () => {
  let exampleComponent: ExampleComponent;
  let fixture: ComponentFixture<ExampleComponent>;

  beforeEach(() => {
    TestBed.configureTestingModule({
      imports: [FormsModule, TimepickerModule.forRoot()],
      declarations: [
        ExampleComponent
      ]
    });
    fixture = TestBed.createComponent(ExampleComponent);
  });

  it('should recognize a timepicker', async(() => {
    fixture.detectChanges();
    const timepickerChild: TimepickerComponent = fixture.componentInstance.timepickerChild;
    console.log('timepickerChild', timepickerChild);
    expect(timepickerChild).toBeDefined();
  }));
});

プランカーの例

19
yurzui

ほとんどの場合、減速に追加するだけでいいのです。

beforeEach(async(() => {
        TestBed
            .configureTestingModule({
                imports: [],
                declarations: [TimepickerComponent],
                providers: [],
            })
            .compileComponents() 
3
omri.s

子コンポーネントに* ngIfがないことを確認してください。これはfalseと評価されます。その場合、子コンポーネントは未定義になります。

1
Zobair Saleem