--- id: 587d824b367417b2b2512c48 title: Use Assert.isOK and Assert.isNotOK challengeType: 2 videoUrl: '' localeTitle: Utilice Assert.isOK y Assert.isNotOK --- ## Description
Como recordatorio, este proyecto se está construyendo sobre el siguiente proyecto de inicio en Glitch , o clonado desde GitHub . Utilice assert.isOk () o assert.isNotOk () para hacer que se pasen las pruebas. .isOk (truthy) y .isNotOk (falsey) pasarán.
## Instructions
## Tests
```yml tests: - text: Todas las pruebas deben pasar testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=2").then(data => {assert.equal(data.state,"passed"); }, xhr => { throw new Error(xhr.responseText); })' - text: Elija la aserción correcta - isOk vs. isNotOk testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=2").then(data => { assert.equal(data.assertions[0].method, "isNotOk", "Null is falsey"); }, xhr => { throw new Error(xhr.responseText); })' - text: Elija la aserción correcta - isOk vs. isNotOk testString: '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); })' - text: Elija la aserción correcta - isOk vs. isNotOk testString: '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); })' ```
## Challenge Seed
## Solution
```js // solution required ```