ngx-eagle
Version:
UI component infrastructure and Design components for mobile and desktop Angular web applications.
22 lines (17 loc) • 581 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { FormFieldComponent } from './form-field.component';
describe('FormFieldComponent', () => {
let component: FormFieldComponent;
let fixture: ComponentFixture<FormFieldComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [FormFieldComponent]
});
fixture = TestBed.createComponent(FormFieldComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});