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