Files
myoffice_public/MyOffice.SPA/src/app/shared/components/feather-icons/feather-icons.component.spec.ts
T

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();
});
});