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