import { ComponentFixture, TestBed } from '@angular/core/testing' import { ConfigComponent } from './config.component' describe('ConfigComponent', () => { let component: ConfigComponent let fixture: ComponentFixture beforeEach(async () => { await TestBed.configureTestingModule({ imports: [ConfigComponent], }).compileComponents() fixture = TestBed.createComponent(ConfigComponent) component = fixture.componentInstance fixture.detectChanges() }) it('should create', () => { expect(component).toBeTruthy() }) })