88 lines
2.5 KiB
Markdown
88 lines
2.5 KiB
Markdown
---
|
||
id: 587d824b367417b2b2512c48
|
||
title: Use Assert.isOK y Assert.isNotOK
|
||
challengeType: 2
|
||
forumTopicId: 301607
|
||
dashedName: use-assert-isok-and-assert-isnotok
|
||
---
|
||
|
||
# --description--
|
||
|
||
Como recordatorio, este proyecto está siendo construido con base en el siguiente proyecto inicial [Replit](https://replit.com/github/freeCodeCamp/boilerplate-mochachai), o clonado desde [GitHub](https://github.com/freeCodeCamp/boilerplate-mochachai/).
|
||
|
||
`isOk()` prueba un valor verdadero y `isNotOk()` prueba un valor falso.
|
||
|
||
Para aprender más sobre los valores verdaderos y falsos, prueba nuestro desafío de [Falsy Bouncer](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer).
|
||
|
||
# --instructions--
|
||
|
||
Dentro de `tests/1_unit-tests.js` bajo la prueba etiquetada `#3` en `Basic Assertions` suite, cambie cada `assert` a `assert.isOk()` o `assert.isNotOk()` para hacer que la prueba pase (debe evaluarse como `true`). No modifiques los argumentos pasados a los verificadores.
|
||
|
||
# --hints--
|
||
|
||
Todas las pruebas deben pasar.
|
||
|
||
```js
|
||
(getUserInput) =>
|
||
$.get(getUserInput('url') + '/_api/get-tests?type=unit&n=2').then(
|
||
(data) => {
|
||
assert.equal(data.state, 'passed');
|
||
},
|
||
(xhr) => {
|
||
throw new Error(xhr.responseText);
|
||
}
|
||
);
|
||
```
|
||
|
||
Debe elegir el método correcto para la primera aserción - `isOk` vs `isNotOk`.
|
||
|
||
```js
|
||
(getUserInput) =>
|
||
$.get(getUserInput('url') + '/_api/get-tests?type=unit&n=2').then(
|
||
(data) => {
|
||
assert.equal(data.assertions[0].method, 'isNotOk', 'Null is falsy');
|
||
},
|
||
(xhr) => {
|
||
throw new Error(xhr.responseText);
|
||
}
|
||
);
|
||
```
|
||
|
||
Debe elegir el método correcto para la segunda aserción - `isOk` vs `isNotOk`.
|
||
|
||
```js
|
||
(getUserInput) =>
|
||
$.get(getUserInput('url') + '/_api/get-tests?type=unit&n=2').then(
|
||
(data) => {
|
||
assert.equal(data.assertions[1].method, 'isOk', 'A string is truthy');
|
||
},
|
||
(xhr) => {
|
||
throw new Error(xhr.responseText);
|
||
}
|
||
);
|
||
```
|
||
|
||
Debe elegir el método correcto para la tercera aserción - `isOk` vs `isNotOk`.
|
||
|
||
```js
|
||
(getUserInput) =>
|
||
$.get(getUserInput('url') + '/_api/get-tests?type=unit&n=2').then(
|
||
(data) => {
|
||
assert.equal(data.assertions[2].method, 'isOk', 'true is truthy');
|
||
},
|
||
(xhr) => {
|
||
throw new Error(xhr.responseText);
|
||
}
|
||
);
|
||
```
|
||
|
||
# --solutions--
|
||
|
||
```js
|
||
/**
|
||
Backend challenges don't need solutions,
|
||
because they would need to be tested against a full working project.
|
||
Please check our contributing guidelines to learn more.
|
||
*/
|
||
```
|