pdnsmanager/frontend/src/app/partials/fa-icon/fa-icon.component.spec.ts
2017-07-23 16:24:52 +02:00

26 lines
633 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FaIconComponent } from './fa-icon.component';
describe('FaIconComponent', () => {
let component: FaIconComponent;
let fixture: ComponentFixture<FaIconComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ FaIconComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(FaIconComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});