]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
87389fcc09007a44028c80d41d32f8602224601e
[ceph-ci.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
6 import { RefreshIntervalService } from '../../services/refresh-interval.service';
7 import { RefreshSelectorComponent } from './refresh-selector.component';
8
9 describe('RefreshSelectorComponent', () => {
10   let component: RefreshSelectorComponent;
11   let fixture: ComponentFixture<RefreshSelectorComponent>;
12
13   configureTestBed({
14     imports: [FormsModule],
15     declarations: [RefreshSelectorComponent],
16     providers: [RefreshIntervalService]
17   });
18
19   beforeEach(() => {
20     fixture = TestBed.createComponent(RefreshSelectorComponent);
21     component = fixture.componentInstance;
22     fixture.detectChanges();
23   });
24
25   it('should create', () => {
26     expect(component).toBeTruthy();
27   });
28 });