Skip to content

Commit a513424

Browse files
committed
translated up to 3.9
1 parent 6517904 commit a513424

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

readme-es.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ test("Shallow/mocked approach: When clicked to show filters, filters are display
11771177

11781178
### :clap: Ejemplo de cómo hacerlo correctamente: API E2E que se resuelve solo cuando se realizan las operaciones asíncronas (Cypress)
11791179

1180-
![](https://img.shields.io/badge/🔨%20Example%20using%20Cypress-blue.svg "Using Cypress to illustrate the idea")
1180+
![](https://img.shields.io/badge/🔨%20Example%20using%20Cypress-blue.svg "Usando Cypress para ilustrar la idea")
11811181
![](https://img.shields.io/badge/🔧%20Example%20using%20React%20Testing%20Library-blue.svg "Ejemplos con react-testing-library")
11821182

11831183
```javascript
@@ -1362,28 +1362,28 @@ beforeEach(setUser => () {
13621362

13631363
<br/>
13641364

1365-
## ⚪ ️ 3.9 Have one E2E smoke test that just travels across the site map
1365+
## ⚪ ️ 3.9 Haz un test E2E que navegue toda la página (smoke test)
13661366

1367-
:white_check_mark: **Haz:** For production monitoring and development-time sanity check, run a single E2E test that visits all/most of the site pages and ensures no one breaks. This type of test brings a great return on investment as it's very easy to write and maintain, but it can detect any kind of failure including functional, network and deployment issues. Other styles of smoke and sanity checking are not as reliable and exhaustive - some ops teams just ping the home page (production) or developers who run many integration tests which don't discover packaging and browser issues. Goes without saying that the smoke test doesn't replace functional tests rather just aim to serve as a quick smoke detector
1367+
:white_check_mark: **Haz:** Para el monitoreo de producción y verificar que nada se rompe en tiempo de desarrollo (sanity check), ejecuta un único test E2E que visite todas o la mayoría de las páginas y se asegure que ninguna se rompe. Este tipo de test proporciona un gran retorno de la inversión ya que es un bastante sencillo de crear y mantener y puede detecta cualquier tipo de fallo, incluido funcionales, red y despliegue. Otras formas de hacer smoke y sanity checks no son tan confiables y exhaustivas - algunso equipos de operaciones simplemente hacen ping a la página de inicio (en producción) o desarrolladores que tiene muchos test de integración que no levanta errores de construcción o de navegador. No hace falta decir que esta prueba no sustituye los test funcionales, solo siver como detector de humo rápido.
13681368

13691369
<br/>
13701370

1371-
**De lo contrario:** Everything might seem perfect, all tests pass, production health-check is also positive but the Payment component had some packaging issue and only the /Payment route is not rendering
1371+
**De lo contrario:** Todo puede parecer estar bien, todos los test pasan, el health-check de produción está ok también, pero el componente de pago se construyó mal y simplemente la ruta /Payment no se renderiza
13721372

13731373
<br/>
13741374

13751375
<details><summary>✏ <b>Código de Ejemplo</b></summary>
13761376

13771377
<br/>
13781378

1379-
### :clap: Ejemplo de cómo hacerlo correctamente: Smoke travelling across all pages
1379+
### :clap: Ejemplo de cómo hacerlo correctamente: Navegando a todas las páginas
13801380

1381-
![](https://img.shields.io/badge/🔨%20Example%20using%20Cypress-blue.svg "Using Cypress to illustrate the idea")
1381+
![](https://img.shields.io/badge/🔨%20Example%20using%20Cypress-blue.svg "Usando Cypress para ilustrar la idea")
13821382

13831383
```javascript
13841384
it("When doing smoke testing over all page, should load them all successfully", () => {
1385-
// exemplified using Cypress but can be implemented easily
1386-
// using any E2E suite
1385+
// ejemplificado con Cypress pero puede implementarse
1386+
// facilmente usando cualquier herramienta E2E
13871387
cy.visit("https://mysite.com/home");
13881388
cy.contains("Home");
13891389
cy.contains("https://mysite.com/Login");
@@ -1491,7 +1491,7 @@ paths:
14911491

14921492
### :clap: Ejemplo de cómo hacerlo correctamente: Using Applitools to get snapshot comaprison and other advanced features
14931493

1494-
![](https://img.shields.io/badge/🔨%20Example%20using%20AppliTools-blue.svg "Using AppliTools") ![](https://img.shields.io/badge/🔨%20Example%20using%20Cypress-blue.svg "Using Cypress to illustrate the idea")
1494+
![](https://img.shields.io/badge/🔨%20Example%20using%20AppliTools-blue.svg "Using AppliTools") ![](https://img.shields.io/badge/🔨%20Example%20using%20Cypress-blue.svg "Usando Cypress para ilustrar la idea")
14951495

14961496
```javascript
14971497
import * as todoPage from "../page-objects/todo-page";

0 commit comments

Comments
 (0)