import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { SimpleTableComponent } from './simple-table.component'; describe('SimpleTableComponent', () => { let component: SimpleTableComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [SimpleTableComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(SimpleTableComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });