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';
8 import { ReportListComponent } from './report-list.component';
10 describe('AllReportsComponent', () => {
11 let component: ReportListComponent;
12 let fixture: ComponentFixture<ReportListComponent>;
14 beforeEach(async(() => {
15 TestBed.configureTestingModule({
16 declarations: [ ReportListComponent ],
24 }).compileComponents();
28 fixture = TestBed.createComponent(ReportListComponent);
29 component = fixture.componentInstance;
30 fixture.detectChanges();
33 it('should compile', () => {
34 expect(component).toBeTruthy();