angular-material-clock-time-picker
Version:
This is time picker for angular material projects, for Angular Material 5.
26 lines (20 loc) • 661 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { TimePickerComponent } from './time-picker.component';
describe('TimePickerComponent', () => {
let component: TimePickerComponent;
let fixture: ComponentFixture<TimePickerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ TimePickerComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TimePickerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});