fix test
This commit is contained in:
parent
ddacedb899
commit
1656c143d9
|
@ -43,7 +43,7 @@ describe('Component Tests', () => {
|
||||||
it('Should call EPreguntaCerrada query and add missing value', () => {
|
it('Should call EPreguntaCerrada query and add missing value', () => {
|
||||||
const ePreguntaCerradaOpcion: IEPreguntaCerradaOpcion = { id: 456 };
|
const ePreguntaCerradaOpcion: IEPreguntaCerradaOpcion = { id: 456 };
|
||||||
const ePreguntaCerrada: IEPreguntaCerrada = { id: 2192 };
|
const ePreguntaCerrada: IEPreguntaCerrada = { id: 2192 };
|
||||||
ePreguntaCerradaOpcion.ePreguntaCerrada = ePreguntaCerrada;
|
ePreguntaCerradaOpcion.epreguntaCerrada = ePreguntaCerrada;
|
||||||
|
|
||||||
const ePreguntaCerradaCollection: IEPreguntaCerrada[] = [{ id: 89287 }];
|
const ePreguntaCerradaCollection: IEPreguntaCerrada[] = [{ id: 89287 }];
|
||||||
jest.spyOn(ePreguntaCerradaService, 'query').mockReturnValue(of(new HttpResponse({ body: ePreguntaCerradaCollection })));
|
jest.spyOn(ePreguntaCerradaService, 'query').mockReturnValue(of(new HttpResponse({ body: ePreguntaCerradaCollection })));
|
||||||
|
@ -65,7 +65,7 @@ describe('Component Tests', () => {
|
||||||
it('Should update editForm', () => {
|
it('Should update editForm', () => {
|
||||||
const ePreguntaCerradaOpcion: IEPreguntaCerradaOpcion = { id: 456 };
|
const ePreguntaCerradaOpcion: IEPreguntaCerradaOpcion = { id: 456 };
|
||||||
const ePreguntaCerrada: IEPreguntaCerrada = { id: 64500 };
|
const ePreguntaCerrada: IEPreguntaCerrada = { id: 64500 };
|
||||||
ePreguntaCerradaOpcion.ePreguntaCerrada = ePreguntaCerrada;
|
ePreguntaCerradaOpcion.epreguntaCerrada = ePreguntaCerrada;
|
||||||
|
|
||||||
activatedRoute.data = of({ ePreguntaCerradaOpcion });
|
activatedRoute.data = of({ ePreguntaCerradaOpcion });
|
||||||
comp.ngOnInit();
|
comp.ngOnInit();
|
||||||
|
|
Loading…
Reference in New Issue