Files
2022-01-12 06:40:05 -08:00

2.5 KiB
Raw Permalink Blame History

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
587d824b367417b2b2512c48 Use Assert.isOK y Assert.isNotOK 2 301607 use-assert-isok-and-assert-isnotok

--description--

Como recordatorio, este proyecto está siendo construido con base en el siguiente proyecto inicial Replit, o clonado desde GitHub.

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.

--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.

(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.

(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.

(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.

(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--

/**
  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.
*/