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