diff --git a/app/services/highlighter.js b/app/services/highlighter.js index 45fbe7a8b..21221df92 100644 --- a/app/services/highlighter.js +++ b/app/services/highlighter.js @@ -133,7 +133,7 @@ export default Service.extend({ }, _hasCallOnStack(procedureBlock) { - return this._procedureCalls().some(b => getProcedureBlock(b).id === procedureBlock.id) + return this._procedureCalls().some(b => getProcedureBlock(b)?.id === procedureBlock?.id) }, _workspace() { diff --git a/tests/integration/desafios/segundoCiclo/Chuy/InfinitosTrofeos-test.js b/tests/integration/desafios/segundoCiclo/Chuy/InfinitosTrofeos-test.js index 3c996b0d9..85f792ebe 100644 --- a/tests/integration/desafios/segundoCiclo/Chuy/InfinitosTrofeos-test.js +++ b/tests/integration/desafios/segundoCiclo/Chuy/InfinitosTrofeos-test.js @@ -6,176 +6,153 @@ moduloActividad(nombre, () => { actividadTest(nombre, { solucion: ` - - cantidad - direccion - - - - - - - - - - - - - 4 - - - - - - - - - - - - - - - - 3 - - - - - - - - - - - - - - - - 4 - - - - - - - - - - - - - - - - 3 + + + + + + + + + + 4 - - - - - - - - + + + + + + + + + + + + + 3 + + + + + + + + + + + + + + 4 + + + + + + + + + + + + + + 3 + + + + + + + + + + + - + - + - - - - - - - - - - - - Agarrar trofeos hacia - cantidad = 3 - direccion = abajo - - - - - - - - - - - - - - + - - - - - - - - - - + + + + + + + + Agarrar trofeos hacia + + + + + direccion - + + + + + + cantidad + + + + + + + + + direccion + + + + + + - + - - - + - - - - Agarrar trofeos centro - - - - - - 2 - - - - - - - - - - - - - - - - - - - - - 4 + + + Agarrar trofeos centro + + + + + 2 + + + + + + + + + + + + + + + + + + 4 + + + + + + + - - - - - - - + - - - `, - skip: true + ` }); }); diff --git a/tests/integration/desafios/segundoCiclo/Yvoty/MariposasEncuadradas-test.js b/tests/integration/desafios/segundoCiclo/Yvoty/MariposasEncuadradas-test.js index beb8d7b31..b680e062b 100644 --- a/tests/integration/desafios/segundoCiclo/Yvoty/MariposasEncuadradas-test.js +++ b/tests/integration/desafios/segundoCiclo/Yvoty/MariposasEncuadradas-test.js @@ -5,107 +5,93 @@ let nombre = "MariposasEncuadradas"; moduloActividad(nombre, () => { actividadTest(nombre, { - solucion: ` - - direccion - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + solucion: ` + + + + + + + + + + + + - + - - + - - - - - - - - - - - - - - Observar mariposas hacia - direccion - - - - - - 6 - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - Observar mariposa si hay - - - - - - - - - + + + + + + Observar mariposas hacia + + + + + 6 + + + + + + + direccion + + + + + + + + + + - - - - `, - skip: true + + + + Prender luz si hay + + + + + + + + + + + + ` }); - }); \ No newline at end of file