2 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
3 import { NoopAnimationsModule } from '@angular/platform-browser/animations';
4 import { MatPaginatorModule } from '@angular/material/paginator';
5 import { MatSortModule } from '@angular/material/sort';
6 import { MatTableModule } from '@angular/material/table';
7 import { ColumnListComponent } from './column-list.component';
8 import { FormsModule } from '@angular/forms';
9 import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
10 import { HttpClientTestingModule } from '@angular/common/http/testing';
12 describe('ColumnListComponent', () => {
13 let component: ColumnListComponent;
14 let fixture: ComponentFixture<ColumnListComponent>;
16 beforeEach(async(() => {
17 TestBed.configureTestingModule({
18 declarations: [ ColumnListComponent ],
25 HttpClientTestingModule
27 schemas: [CUSTOM_ELEMENTS_SCHEMA]
28 }).compileComponents();
32 fixture = TestBed.createComponent(ColumnListComponent);
33 component = fixture.componentInstance;
34 fixture.detectChanges();
37 it('should compile', () => {
38 expect(component).toBeTruthy();