@engie-group/fluid-design-system-angular
Version:
Fluid Design System Angular
26 lines (20 loc) • 621 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RadioComponent } from './radio.component';
describe('RadioComponent', () => {
let component: RadioComponent;
let fixture: ComponentFixture<RadioComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ RadioComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RadioComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});