UNPKG

@engie-group/fluid-design-system-angular

Version:

Fluid Design System Angular

26 lines (20 loc) 628 B
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ToggleComponent } from './toggle.component'; describe('ToggleComponent', () => { let component: ToggleComponent; let fixture: ComponentFixture<ToggleComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ ToggleComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ToggleComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });