freeCodeCamp/curriculum/challenges/spanish/06-information-security-and.../quality-assurance-and-testi.../use-assert.isok-and-assert....

1.9 KiB

id title challengeType videoUrl localeTitle
587d824b367417b2b2512c48 Use Assert.isOK and Assert.isNotOK 2 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

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

// solution required