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