1 import { NO_ERRORS_SCHEMA } from '@angular/core';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
4 import { configureTestBed } from '~/testing/unit-test-helper';
5 import { DashboardTimeSelectorComponent } from './dashboard-time-selector.component';
7 describe('DashboardTimeSelectorComponent', () => {
8 let component: DashboardTimeSelectorComponent;
9 let fixture: ComponentFixture<DashboardTimeSelectorComponent>;
12 schemas: [NO_ERRORS_SCHEMA],
13 declarations: [DashboardTimeSelectorComponent]
17 fixture = TestBed.createComponent(DashboardTimeSelectorComponent);
18 component = fixture.componentInstance;
21 it('should create', () => {
22 expect(component).toBeTruthy();