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