timemanager/frontend/src/app/date-time-picker/date-time-picker.component.spec.ts
Sebastian Böckelmann 52ab4777a9
All checks were successful
Java CI with Maven / build (push) Successful in 49s
Include Datetime picker in advanced scheduler
2023-11-12 08:04:04 +01:00

22 lines
617 B
TypeScript

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