pdnsmanager/frontend/src/app/partials/fa-icon/fa-icon.component.spec.ts

26 lines
633 B
TypeScript
Raw Normal View History

2017-07-23 16:24:52 +02:00
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();
});
});