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