]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
acfe49cef48c73dcf646c787360a3b12e14b91e1
[ceph.git] /
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2 import { FormsModule } from '@angular/forms';
3
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';
7
8 describe('RefreshSelectorComponent', () => {
9   let component: RefreshSelectorComponent;
10   let fixture: ComponentFixture<RefreshSelectorComponent>;
11
12   configureTestBed({
13     imports: [FormsModule],
14     declarations: [RefreshSelectorComponent],
15     providers: [RefreshIntervalService]
16   });
17
18   beforeEach(() => {
19     fixture = TestBed.createComponent(RefreshSelectorComponent);
20     component = fixture.componentInstance;
21     fixture.detectChanges();
22   });
23
24   it('should create', () => {
25     expect(component).toBeTruthy();
26   });
27 });