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