An error occurred while loading the file. Please try again.
-
Arun Kumar authored57ec1af2
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();
});
});