import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { MatDemoTreeComponent } from './mat-demo-tree.component'; describe('MatDemoTreeComponent', () => { let component: MatDemoTreeComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ MatDemoTreeComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(MatDemoTreeComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });