2022-03-11 10:53:32 -08:00
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing'
|
2020-10-27 01:10:18 +01:00
|
|
|
|
2022-03-11 10:53:32 -08:00
|
|
|
import { SettingsComponent } from './settings.component'
|
2020-10-27 01:10:18 +01:00
|
|
|
|
|
|
|
|
describe('SettingsComponent', () => {
|
2022-03-11 10:53:32 -08:00
|
|
|
let component: SettingsComponent
|
|
|
|
|
let fixture: ComponentFixture<SettingsComponent>
|
2020-10-27 01:10:18 +01:00
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
await TestBed.configureTestingModule({
|
2022-03-11 10:53:32 -08:00
|
|
|
declarations: [SettingsComponent],
|
|
|
|
|
}).compileComponents()
|
|
|
|
|
})
|
2020-10-27 01:10:18 +01:00
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2022-03-11 10:53:32 -08:00
|
|
|
fixture = TestBed.createComponent(SettingsComponent)
|
|
|
|
|
component = fixture.componentInstance
|
|
|
|
|
fixture.detectChanges()
|
|
|
|
|
})
|
2020-10-27 01:10:18 +01:00
|
|
|
|
|
|
|
|
it('should create', () => {
|
2022-03-11 10:53:32 -08:00
|
|
|
expect(component).toBeTruthy()
|
|
|
|
|
})
|
|
|
|
|
})
|