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