ngAfterViewInit的单元测试?

时间:2019-03-21 06:21:03

标签: angular unit-testing

我刚开始编写有关角度的单元测试用例。我必须为 ngAfterViewInit 编写一个测试用例。我不知道如何开始。我正在使用角度7。

我的组件代码:

export class MyAccessComponent implements OnInit, AfterViewInit {

    // Spinner
    pageLoaded: boolean;
    @Input() diameter = 64;
    @Input() strokeWidth = 7;

    // Icons
    faEdit = faEdit;

    dataSource;
    @ViewChild(MatPaginator) paginator: MatPaginator;

    constructor(private router: Router, private userService: UserService) { }

    ngOnInit() {
        this.pageLoaded = false;
        // Data table init
        this.getUsers();
    }

    ngAfterViewInit() {
        setTimeout(() => {
            this.pageLoaded = true;
        }, 500);
    }
}

1 个答案:

答案 0 :(得分:0)

您可以使用组件实例以编程方式调用生命周期挂钩,例如:

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

it('should set pageLoaded after view init', () => {
  component.ngAfterViewInit();
  expect(component.pageLoaded).toBe(true);
});

请记住,由于您在挂钩中使用了超时,因此需要使用fakeAsync进行正确的测试