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