blob: 8cfdb2f432044ce77f10cd256b85691731b0e1c0 [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 { TestingModule } from '../../../testing/testing.module';
import { ConfigDetailComponent } from './config-detail.component';
describe('ConfigDetailComponent', () => {
let component: ConfigDetailComponent;
let fixture: ComponentFixture<ConfigDetailComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [TestingModule, HttpClientTestingModule],
declarations: [ConfigDetailComponent],
schemas: [
/* avoid importing modules */
NO_ERRORS_SCHEMA,
],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ConfigDetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});