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