Шутка: невозможно установить свойство '' неопределенного (Angular) - PullRequest
0 голосов
/ 03 августа 2020

Я начал писать модульные тесты и у меня возникла проблема. Тест не прошел с ошибкой TypeError: Cannot set property 'birthday' of undefined

Может кто подскажет, как заставить работать корректно. Был бы очень благодарен за любую помощь!

Мой код:

CandidateItemComponent.ts

export class CandidateItemComponent implements OnInit {

  @Input() candidate: Candidate;
  @Input() isAdmin: boolean;
  birthday: string;

  ngOnInit() {
    this.birthday = this.candidate.birthday;
  }
}

CandidateItemComponent. html

<div *ngFor="let property of visibleCandidateProperties"
     class="candidate-item"
     [attr.title]="property.propertyKey === 'age' ? birthday : ''">
  {{candidate[property.propertyKey]}}
</div>

CandidateItemComponent .spe c .ts

import { async, ComponentFixture, fakeAsync, TestBed, tick } from '@angular/core/testing';
import { CandidateItemComponent } from './candidate-item.component';

describe('CandidateItemComponent', () => {
  let component: CandidateItemComponent;
  let fixture: ComponentFixture<CandidateItemComponent>;
  const mockIsAdmin = true;
  const mockBirthday = '12-07-1997';

  const mockCandidate = {
    id: 2,
    firstName: 'Alexander',
    lastName: 'Osichanskiy',
    email: 'sashaoles1727@gmail.com',
    phone: '380638732626',
    birthday: '12-07-1997',
  };

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [CandidateItemComponent],
    }).compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(CandidateItemComponent);
    component = fixture.debugElement.componentInstance;
    component.isAdmin = mockIsAdmin;
    component.birthday = mockBirthday;
    fixture.detectChanges();
  });

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

});

1 Ответ

1 голос
/ 03 августа 2020

это потому, что вам также необходимо установить вход кандидата вместе с другими входами,

it('should create', () => {
    expect(component).toBeTruthy();
    component.isAdmin = mockIsAdmin;
    component.birthday = mockBirthday;

    component.candidate = mockCandidate;         // here

    fixture.detectChanges();
  });
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...