import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { CaCustomDatetimePickersComponent } from './ca-custom-datetime-pickers.component'; describe('CaCustomDatetimePickersComponent', () => { let component: CaCustomDatetimePickersComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [CaCustomDatetimePickersComponent], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CaCustomDatetimePickersComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });