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