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