freeCodeCamp/curriculum/challenges/portuguese/06-information-security-and.../quality-assurance-and-testi.../test-if-an-array-contains-a...

1.6 KiB

id title challengeType videoUrl localeTitle
587d824d367417b2b2512c51 Test if an Array Contains an Item 2 Teste se uma matriz contém um item

Description

Como lembrete, este projeto está sendo construído sobre o seguinte projeto inicial no Glitch , ou clonado a partir do GitHub .

Instructions

Tests

tests:
  - text: Todos os testes devem passar
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=11").then(data => { assert.equal(data.state,"passed"); }, xhr => { throw new Error(xhr.responseText); })'
  - text: Escolha a afirmação certa - incluir vs. nãoIncluir
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=11").then(data => {  assert.equal(data.assertions[0].method, "notInclude", "It\"s summer in july..."); }, xhr => { throw new Error(xhr.responseText); })'
  - text: Escolha a afirmação certa - incluir vs. nãoIncluir
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=11").then(data => {  assert.equal(data.assertions[1].method, "include", "JavaScript is a backend language !!"); }, xhr => { throw new Error(xhr.responseText); })'

Challenge Seed

Solution

// solution required