26 lines
702 B
TypeScript
26 lines
702 B
TypeScript
import {ComponentFixture, TestBed} from '@angular/core/testing';
|
|
|
|
import {DatepickerComponent} from './datepicker.component';
|
|
|
|
describe('DatepickerComponent', () => {
|
|
let component: DatepickerComponent;
|
|
let fixture: ComponentFixture<DatepickerComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [DatepickerComponent]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(DatepickerComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|