28 lines
668 B
TypeScript
28 lines
668 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { FeatherIconsComponent } from './feather-icons.component';
|
|
|
|
describe('FeatherIconsComponent',
|
|
() => {
|
|
let component: FeatherIconsComponent;
|
|
let fixture: ComponentFixture<FeatherIconsComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [FeatherIconsComponent]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(FeatherIconsComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create',
|
|
() => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|