import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { MatPanelHeaderComponent } from './mat-panel-header.component'; describe('MatPanelHeaderComponent', () => { let component: MatPanelHeaderComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [ NgZorroAntdModule ], declarations: [ MatPanelHeaderComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(MatPanelHeaderComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });