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';
7 import { ReportListComponent } from './report-list.component';
9 describe('AllReportsComponent', () => {
10 let component: ReportListComponent;
11 let fixture: ComponentFixture<ReportListComponent>;
13 beforeEach(async(() => {
14 TestBed.configureTestingModule({
15 declarations: [ ReportListComponent ],
22 }).compileComponents();
26 fixture = TestBed.createComponent(ReportListComponent);
27 component = fixture.componentInstance;
28 fixture.detectChanges();
31 it('should compile', () => {
32 expect(component).toBeTruthy();