--- id: 587d824b367417b2b2512c48 title: Use Assert.isOK and Assert.isNotOK challengeType: 2 videoUrl: '' localeTitle: Use Assert.isOK e Assert.isNotOK --- ## Description
Como lembrete, este projeto está sendo construído sobre o seguinte projeto inicial no Glitch , ou clonado a partir do GitHub . Use assert.isOk () ou assert.isNotOk () para fazer os testes passarem. .isOk (truthy) e .isNotOk (falsey) vão passar.
## Instructions
## Tests
```yml tests: - text: Todos os testes devem passar 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: Escolha a afirmação correta - 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: Escolha a afirmação correta - 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: Escolha a afirmação correta - 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 ```