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