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