From bdbbeb0cbab973f5c6d929181b3f24ccfa954ca7 Mon Sep 17 00:00:00 2001 From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com> Date: Sat, 16 Mar 2019 22:58:51 +0530 Subject: [PATCH] fix(curriculum): Hide solution from tests (#35255) --- ...se-grid-area-without-creating-an-areas-template.spanish.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/spanish/01-responsive-web-design/css-grid/use-grid-area-without-creating-an-areas-template.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/css-grid/use-grid-area-without-creating-an-areas-template.spanish.md index 41dc068ce17..705add162fb 100644 --- a/curriculum/challenges/spanish/01-responsive-web-design/css-grid/use-grid-area-without-creating-an-areas-template.spanish.md +++ b/curriculum/challenges/spanish/01-responsive-web-design/css-grid/use-grid-area-without-creating-an-areas-template.spanish.md @@ -17,8 +17,8 @@ localeTitle: Usar área de cuadrícula sin crear una plantilla de áreas ```yml tests: - - text: item5 clase item5 debe tener una propiedad de grid-area que tenga el valor de 3/1/4/4 . - testString: 'assert(code.match(/.item5\s*?{[\s\S]*grid-area\s*?:\s*?3\s*?\/\s*?1\s*?\/\s*?4\s*?\/\s*?4\s*?;[\s\S]*}/gi), "item5 class should have a grid-area property that has the value of 3/1/4/4.");' + - text: La clase item5 debe tener una propiedad de grid-area de modo que esté entre las líneas horizontales tercera y cuarta y entre las líneas verticales primera y cuarta. + testString: 'assert(code.match(/.item5\s*?{[\s\S]*grid-area\s*?:\s*?3\s*?\/\s*?1\s*?\/\s*?4\s*?\/\s*?4\s*?;[\s\S]*}/gi), "La clase item5 debe tener una propiedad de grid-area de modo que esté entre las líneas horizontales tercera y cuarta y entre las líneas verticales primera y cuarta.");' ```