UNPKG

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

Version:

Fluid Design System Angular

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