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