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