]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/blob
cb98cadd7a3b4f268c298f26f09dd8cd6352e870
[ceph-ci.git] /
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2 import { FormsModule } from '@angular/forms';
3
4 import { RefreshIntervalService } from '~/app/shared/services/refresh-interval.service';
5 import { configureTestBed } from '~/testing/unit-test-helper';
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 });