单元测试ViewChild与垫子排序和设置内容,Jasmine和Karma。

问题描述 投票:2回答:1

我有 ViewChildset content. 我想知道如何使用单元测试来测试这段代码。

这张图是代码覆盖率

enter image description here

  @ViewChild(MatSort) set content(content: ElementRef) {
    this.sort = content;
    Iif (this.sort) {
      this.historyReport.sort = this.sort;
    }
  }
angular typescript unit-testing angular6 karma-jasmine
1个回答
1
投票

在依赖关系中添加MatSortModule,将对你有所帮助

      imports: [MatSortModule],
      declarations: [],
      providers: [
      ]
    }).compileComponents();```
© www.soinside.com 2019 - 2024. All rights reserved.