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