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