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