freeCodeCamp/curriculum/challenges/italian/06-quality-assurance/quality-assurance-and-testi.../learn-how-javascript-assert...

2.3 KiB

id title challengeType forumTopicId dashedName
587d824a367417b2b2512c46 Imparare come funzionano le asserzioni Javascript 2 301589 learn-how-javascript-assertions-work

--description--

Lavorare su queste sfide ti porterà a scrivere il tuo codice utilizzando uno dei seguenti metodi:

Quando hai finito, assicurati che una demo funzionante del tuo progetto sia ospitata in qualche percorso pubblico. Quindi invia l'URL nel campo Solution Link.

--instructions--

All'interno di tests/1_unit-tests.js, sotto il test etichettato con #1, nella suite Basic Assertions, cambia ogni asserzione assert in assert.isNull o assert.isNotNull per far superare il test (dovrebbe risultare true). Non alterare gli argomenti passati alle asserzioni.

--hints--

Tutti i test dovrebbero essere superati.

(getUserInput) =>
  $.get(getUserInput('url') + '/_api/get-tests?type=unit&n=0').then(
    (data) => {
      assert.equal(data.state, 'passed');
    },
    (xhr) => {
      throw new Error(xhr.responseText);
    }
  );

Dovresti scegliere il metodo corretto per la prima asserzione - isNull oppure isNotNull.

(getUserInput) =>
  $.get(getUserInput('url') + '/_api/get-tests?type=unit&n=0').then(
    (data) => {
      assert.equal(data.assertions[0].method, 'isNull', 'Null is null');
    },
    (xhr) => {
      throw new Error(xhr.responseText);
    }
  );

Dovresti scegliere il metodo corretto per la seconda asserzione - isNull oppure isNotNull.

(getUserInput) =>
  $.get(getUserInput('url') + '/_api/get-tests?type=unit&n=0').then(
    (data) => {
      assert.equal(data.assertions[1].method, 'isNotNull', '1 is not null');
    },
    (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.
*/