blob: 84cd80a8e18c07a420131ee5a3f6f45bf8fb429e [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IconComponent } from '../../../../../app/fw/svg/icon/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();
});
});