1 import { NO_ERRORS_SCHEMA } from '@angular/core';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
4 import { CssHelper } from '~/app/shared/classes/css-helper';
5 import { DimlessBinaryPerSecondPipe } from '~/app/shared/pipes/dimless-binary-per-second.pipe';
6 import { DimlessBinaryPipe } from '~/app/shared/pipes/dimless-binary.pipe';
7 import { DimlessPipe } from '~/app/shared/pipes/dimless.pipe';
8 import { FormatterService } from '~/app/shared/services/formatter.service';
9 import { configureTestBed } from '~/testing/unit-test-helper';
10 import { DashboardAreaChartComponent } from './dashboard-area-chart.component';
12 describe('DashboardAreaChartComponent', () => {
13 let component: DashboardAreaChartComponent;
14 let fixture: ComponentFixture<DashboardAreaChartComponent>;
17 schemas: [NO_ERRORS_SCHEMA],
18 declarations: [DashboardAreaChartComponent],
22 DimlessBinaryPerSecondPipe,
29 fixture = TestBed.createComponent(DashboardAreaChartComponent);
30 component = fixture.componentInstance;
33 it('should create', () => {
34 expect(component).toBeTruthy();