freeCodeCamp/curriculum/challenges/russian/06-information-security-and.../quality-assurance-and-testi.../test-if-an-object-has-a-pro...

1.9 KiB

id title challengeType videoUrl localeTitle
587d824e367417b2b2512c55 Test if an Object has a Property 2 Проверьте, имеет ли объект свойство

Description

Напомним, что этот проект строится на следующем стартовом проекте Glitch или клонируется из GitHub . #property утверждает, что фактический объект имеет заданное свойство. Используйте #property или #notProperty, где это необходимо.

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=15").then(data => { assert.equal(data.state,"passed"); }, xhr => { throw new Error(xhr.responseText); })'
  - text: ''
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=15").then(data => { assert.equal(data.assertions[0].method, "notProperty", "A car has not wings"); }, xhr => { throw new Error(xhr.responseText); })'
  - text: ''
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=15").then(data => { assert.equal(data.assertions[1].method, "property", "planes have engines"); }, xhr => { throw new Error(xhr.responseText); })'
  - text: ''
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=15").then(data => { assert.equal(data.assertions[2].method, "property", "Cars have wheels"); }, xhr => { throw new Error(xhr.responseText); })'

Challenge Seed

Solution

// solution required