forked from tykayn/funky-framadate-front
25 lines
663 B
TypeScript
25 lines
663 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { EndConfirmationComponent } from './end-confirmation.component';
|
|
|
|
describe('EndConfirmationComponent', () => {
|
|
let component: EndConfirmationComponent;
|
|
let fixture: ComponentFixture<EndConfirmationComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [EndConfirmationComponent],
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(EndConfirmationComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|