import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+import { NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
+import { HttpClientModule } from '@angular/common/http';
+import { TextService } from '../core/services/text.service';
import { TestComponent } from './test.component';
describe('TestComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ TestComponent ]
+ schemas: [
+ CUSTOM_ELEMENTS_SCHEMA,
+ NO_ERRORS_SCHEMA
+ ],
+ imports: [HttpClientModule],
+ providers: [TextService],
+ declarations: [TestComponent]
})
- .compileComponents();
+ .compileComponents();
}));
beforeEach(() => {