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