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