]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
9aeec4dcb51e5cffa7521f9b137c8b94718d4c75
[ceph.git] /
1 import { NO_ERRORS_SCHEMA } from '@angular/core';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3
4 import { configureTestBed } from '~/testing/unit-test-helper';
5 import { DashboardTimeSelectorComponent } from './dashboard-time-selector.component';
6
7 describe('DashboardTimeSelectorComponent', () => {
8   let component: DashboardTimeSelectorComponent;
9   let fixture: ComponentFixture<DashboardTimeSelectorComponent>;
10
11   configureTestBed({
12     schemas: [NO_ERRORS_SCHEMA],
13     declarations: [DashboardTimeSelectorComponent]
14   });
15
16   beforeEach(() => {
17     fixture = TestBed.createComponent(DashboardTimeSelectorComponent);
18     component = fixture.componentInstance;
19   });
20
21   it('should create', () => {
22     expect(component).toBeTruthy();
23   });
24 });