freeCodeCamp/curriculum/challenges/chinese/06-information-security-and.../quality-assurance-and-testi.../test-if-a-value-falls-withi...

1.9 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d824c367417b2b2512c4f Test if a Value Falls within a Specific Range 2 测试值是否在特定范围内

Description

提醒一下,这个项目是基于Glitch的以下入门项目构建的,或者是从GitHub克隆的。 。近似。(实际,预期,范围,[消息])实际=预期+/-范围选择最小范围第3个参数使测试始终通过它应小于1

Instructions

Tests

tests:
  - text: 所有测试都应该通过
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=9").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=9").then(data => {  assert.equal(data.assertions[0].method, "approximately");  assert.equal(data.assertions[0].args[2], 0.5, "weirdNumbers(0.5) is in the range (0.5, 1.5]. It\"s within 1 +/- 0.5"); }, xhr => { throw new Error(xhr.responseText); })'
  - text: 使用大约(实际,预期,范围) - 选择正确的范围
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/get-tests?type=unit&n=9").then(data => {  assert.equal(data.assertions[1].method, "approximately");  assert.equal(data.assertions[1].args[2], 0.8, "weirdNumbers(0.2) is in the range (0.2, 1.2]. It\"s within 1 +/- 0.8"); }, xhr => { throw new Error(xhr.responseText); })'

Challenge Seed

Solution

// solution required