ea0912b2ba63b82cf4033c81821875467d7e87ab
[portal/sdk.git] /
1 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2 import { NoopAnimationsModule } from '@angular/platform-browser/animations';
3 import { MatPaginatorModule, MatSortModule, MatTableModule } from '@angular/material';
4
5 import { DataChartComponent } from './data-chart.component';
6
7 describe('DataChartComponent', () => {
8   let component: DataChartComponent;
9   let fixture: ComponentFixture<DataChartComponent>;
10
11   beforeEach(async(() => {
12     TestBed.configureTestingModule({
13       declarations: [ DataChartComponent ],
14       imports: [
15         NoopAnimationsModule,
16         MatPaginatorModule,
17         MatSortModule,
18         MatTableModule,
19       ]
20     }).compileComponents();
21   }));
22
23   beforeEach(() => {
24     fixture = TestBed.createComponent(DataChartComponent);
25     component = fixture.componentInstance;
26     fixture.detectChanges();
27   });
28
29   it('should compile', () => {
30     expect(component).toBeTruthy();
31   });
32 });