web-dev-qa-db-ja.com

単体テストAngular JasmineとKarmaで、エラー: 'xxxxxx'の既知のプロパティではないため、 'xxx'にバインドできません。

angular 5のJasmineとKarmaでの単体テストに問題があります。

エラーは、「「my-component2」の既知のプロパティではないため、「fruits」にバインドできません」です。

単体テストコードは次のとおりです。

src/app/components/my-component1/my-component1.component.spec.ts:

import { TestBed, inject, ComponentFixture, async} from '@angular/core/testing';
import {HttpClientTestingModule, HttpTestingController} from '@angular/common/http/testing';

import { Post } from '../../models/post.model';

import { MyComponent1Component } from './my-component1.component';
import { MyService1Service } from '../../services/my-service1.service';

import { HttpClientModule, HttpClient,HttpHandler } from '@angular/common/http';
import {fruit} from '../../Models/fruit';


fdescribe('MyComponent1Component', () => {
  let component: MyComponent1Component;
  let fixture: ComponentFixture<MyComponent1Component>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ MyComponent1Component ],
      imports: [],
      providers: [MyService1Service, HttpClient, HttpHandler, HttpTestingController]
    })

    .compileComponents();
  }));

  beforeEach(async(() => {
    fixture = TestBed.createComponent(MyComponent1Component);
    component = fixture.componentInstance;
    fixture.detectChanges();
  }));

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});

そして、これらは私のコンポーネントのコードです:

src/app/components/my-component1/my-component1.component.ts:

import { Component, OnInit } from '@angular/core';
import { MyService1Service} from '../../services/my-service1.service';
import {fruit} from '../../Models/fruit';

@Component({
  selector: 'my-component1',
  templateUrl: './my-component1.component.html',
  styleUrls: ['./my-component1.component.css']
})
export class MyComponent1Component implements OnInit {

  constructor(private _MyService1Service: MyService1Service) { }

  public fruit= new fruit();

  public fruits: fruit[];
  ngOnInit() {
    this._MyService1Service.getPost().subscribe(
        result => {
              console.log(result);
        },
        error => {
          console.log(<any>error);
        }
      );

    this.fruit.name = 'Apple';
    this.fruits.Push(this.fruit);
  }
}

src/app/components/my-component1/my-component1.component.html:

 <p>
      my-component1 works!
    </p>

    <my-component2 [fruits]=fruits></my-component2>

src/app/components/my-component2/my-component2.component.ts:

import { Component, OnInit, Input } from '@angular/core';
import {fruit} from '../../Models/fruit';

@Component({
  selector: 'my-component2',
  templateUrl: './my-component2.component.html',
  styleUrls: ['./my-component2.component.css']
})
export class MyComponent2Component implements OnInit {

  @Input() fruits: fruit[];

  constructor() { }

  ngOnInit() {
  }

}

src/app/components/my-component2/my-component2.component.html:

<p>
  my-component2 works!
</p>

これはダミーのプロジェクトです。誰か助けてもらえますか?

ありがとう:)

20
bulbasurmsr

そのモジュールはコンポーネント1の一部であるため、テストモジュールを作成するときに2番目のコンポーネントを追加する必要があります。そうしないと、モジュールにmy-component2がなく、入力が無効になります。

TestBed.configureTestingModule({
      declarations: [ MyComponent1Component, MyComponent2Component ],
      imports: [],
      providers: [MyService1Service, HttpClient, HttpHandler, HttpTestingController]
    })
27
nicowernli

一部の人にとってはこれが役立つかもしれません-時には特定のモジュールが欠落しているだけかもしれません

TestBed.configureTestingModule(
{
declarations: [TestComponent],
imports: [<Specific_module>],
}

1
Ajay Reddy