Angular Kendo 网格单元测试,无法绑定到 'data',因为它不是已知的 属性

Angular Kendo Grid Unit tests, Can't bind to 'data' since it isn't a known property of

您有 Kendo Angular 个组件,您正在 运行 进行单元测试,但您收到以下代码的错误。

<kendo-grid [data]="gridData" [height]="410">

有效,但单元测试无法编译。

spec.ts 文件需要导入

import { GridModule } from '@progress/kendo-angular-grid';

beforeEach(async(() => {
    TestBed.configureTestingModule({
        declarations: [KendoGridExampleComponent],
        imports: [GridModule]

您可以从 app.module.ts 文件中复制导入路径