timemanager/frontend/src/app/user-settings/connection-settings/ntfy-settings/ntfy-settings.component.spec.ts
Sebastian Böckelmann 4155af45f5
All checks were successful
Java CI with Maven / build-and-push-frontend (push) Successful in 13s
Java CI with Maven / build-and-push-backend (push) Successful in 9s
Frontend to update ntfy data
2024-03-14 14:44:06 +01:00

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();
});
});