2019-08-10 17:41:01 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { EndConfirmationComponent } from './end-confirmation.component';
|
|
|
|
|
|
|
|
describe('EndConfirmationComponent', () => {
|
2020-04-21 10:50:26 +02:00
|
|
|
let component: EndConfirmationComponent;
|
|
|
|
let fixture: ComponentFixture<EndConfirmationComponent>;
|
2019-08-10 17:41:01 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [EndConfirmationComponent],
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
2019-08-10 17:41:01 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(EndConfirmationComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2019-08-10 17:41:01 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2019-08-10 17:41:01 +02:00
|
|
|
});
|