import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ConfigurationComponent } from './configuration.component'; describe('ConfigurationComponent', () => { let component: ConfigurationComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [ ConfigurationComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ConfigurationComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });