15

Jasmine を使用して Angular 2 コンポーネントの単体テストを作成しています。コンポーネントがインスタンス化されたときに、ドキュメントのタイトルが特定の値に設定されているかどうかをテストしたいと考えています。

これが私のコンポーネントです

import { Component } from '@angular/core';
import { Title }     from '@angular/platform-browser';

@Component({
  selector: 'cx-account',
  templateUrl: 'app/account/account.component.html',
})
export class AccountComponent {
  public constructor(private titleService: Title ) {
    titleService.setTitle("Account");
  }
}

ここに私がテスト用に書いたものがありますが、機能していません。titleService.getTitle()Karma デバッグ ランナー ページのタイトルを教えてくれます。

import { TestBed }      from '@angular/core/testing';
import { Title, By }           from '@angular/platform-browser';
import { AccountComponent } from './account.component';

describe('AppComponent Tests', function () {
  let titleService: Title = new Title(); 
  beforeEach(() => {
    TestBed.configureTestingModule({
        declarations: [AccountComponent],
        providers:    [ {provide: Title } ],      
    });
   let fixture = TestBed.createComponent(AccountComponent);

   });

  it('Title Should be Account', () => {
    expect(titleService.getTitle()).toBe('Account');
  });      
});

カルマ出力は次のとおりです。

エラー: 'Karma DEBUG RUNNER' は 'Account' である必要があります。

4

1 に答える 1

15

私は最終的に私の問題の解決策を見つけました。TestBed を使用して、注入したサービスを取得しました。次に、そのサービスを使用して、現在のテスト コンテキストでページ タイトルを取得します。これが私の新しいコードです

import {  TestBed }      from '@angular/core/testing';
import { Title}           from '@angular/platform-browser';
import { AccountComponent } from './account.component';

describe('AccountComponent Tests', function () {
    let userService: Title;
    let fixture: any;
    let comp: AccountComponent;
    beforeEach(async(() => {
        TestBed.configureTestingModule({
            declarations: [AccountComponent],
            providers: [{ provide: Title, useClass: Title }],
        }).compileComponents();
    }));

    beforeEach(() => {
        fixture = TestBed.createComponent(AccountComponent);
        // Access the dependency injected component instance
        comp = fixture.componentInstance;
    });

    it('Page title Should be Account', () => {
            userService = TestBed.get(Title);
            expect(userService.getTitle()).toBe("Account");
    });
    it('should instantiate component', () => {
            expect(comp instanceof AccountComponent).toBe(true, 'should create AccountComponent');
    });


});
于 2016-10-07T19:35:59.497 に答える