import { ComponentFixture, TestBed } from '@angular/core/testing'; import { NtfySettingsComponent } from './ntfy-settings.component'; describe('NtfySettingsComponent', () => { let component: NtfySettingsComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ declarations: [NtfySettingsComponent] }); fixture = TestBed.createComponent(NtfySettingsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });