shared-table.component.spec.ts 635 bytes
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SharedTableComponent } from './shared-table.component';
describe('SharedTableComponent', () => {
  let component: SharedTableComponent;
  let fixture: ComponentFixture<SharedTableComponent>;
  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ SharedTableComponent ]
    .compileComponents();
    fixture = TestBed.createComponent(SharedTableComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });
  it('should create', () => {
    expect(component).toBeTruthy();
  });
});