ngx-eagle
Version:
UI component infrastructure and Design components for mobile and desktop Angular web applications.
24 lines (18 loc) • 655 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { RangePickerComponent } from './range-picker.component';
describe('RangePickerComponent', () => {
let component: RangePickerComponent;
let fixture: ComponentFixture<RangePickerComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [RangePickerComponent]
})
.compileComponents();
fixture = TestBed.createComponent(RangePickerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});