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