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