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