fffce516e39677fb6528e96df9c5e4b7442ee1f2
[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 { RunReportFinalTableComponent } from './run-report-final-table.component';
8
9 describe('RunReportFinalTableComponent', () => {
10   let component: RunReportFinalTableComponent;
11   let fixture: ComponentFixture<RunReportFinalTableComponent>;
12
13   beforeEach(async(() => {
14     TestBed.configureTestingModule({
15       declarations: [ RunReportFinalTableComponent ],
16       imports: [
17         NoopAnimationsModule,
18         MatPaginatorModule,
19         MatSortModule,
20         MatTableModule,
21       ]
22     }).compileComponents();
23   }));
24
25   beforeEach(() => {
26     fixture = TestBed.createComponent(RunReportFinalTableComponent);
27     component = fixture.componentInstance;
28     fixture.detectChanges();
29   });
30
31   it('should compile', () => {
32     expect(component).toBeTruthy();
33   });
34 });