@davinchi-project/icon-bar
Version:
Iconbar inspired by how to section in w3school
26 lines (20 loc) • 636 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IconBarComponent } from './icon-bar.component';
describe('IconBarComponent', () => {
let component: IconBarComponent;
let fixture: ComponentFixture<IconBarComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ IconBarComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(IconBarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});