timemanager/frontend/src/app/user-settings/connection-settings/connection-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
644 B
TypeScript

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