1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2 import { FormsModule } from '@angular/forms';
4 import { configureTestBed } from '../../../../testing/unit-test-helper';
6 import { RefreshIntervalService } from '../../services/refresh-interval.service';
7 import { RefreshSelectorComponent } from './refresh-selector.component';
9 describe('RefreshSelectorComponent', () => {
10 let component: RefreshSelectorComponent;
11 let fixture: ComponentFixture<RefreshSelectorComponent>;
14 imports: [FormsModule],
15 declarations: [RefreshSelectorComponent],
16 providers: [RefreshIntervalService]
20 fixture = TestBed.createComponent(RefreshSelectorComponent);
21 component = fixture.componentInstance;
22 fixture.detectChanges();
25 it('should create', () => {
26 expect(component).toBeTruthy();