blob: 0f26d8d8c6631775be7f456d353f9f50cc5cb185 [file] [log] [blame]
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { NO_ERRORS_SCHEMA } from '@angular/core';
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { InputInlineComponent } from './input-inline.component';
describe('InputInlineComponent', () => {
let component: InputInlineComponent;
let fixture: ComponentFixture<InputInlineComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [InputInlineComponent],
imports: [HttpClientTestingModule],
schemas: [
/* avoid importing modules */
NO_ERRORS_SCHEMA,
],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(InputInlineComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});