1.6 KiB
1.6 KiB
id, title, localeTitle, challengeType
id | title | localeTitle | challengeType |
---|---|---|---|
587d7fb7367417b2b2512c0b | Use model.find() to Search Your Database | Используйте model.find () для поиска в вашей базе данных | 2 |
Description
Instructions
Tests
tests:
- text: Найти все элементы, соответствующие критериям, должны быть успешными
testString: 'getUserInput => $.post(getUserInput(''url'') + ''/_api/find-all-by-name'', {name: ''r@nd0mN4m3'', age: 24, favoriteFoods: [''pizza'']}).then(data => { assert.isArray(data, ''the response should be an Array''); assert.equal(data[0].name, ''r@nd0mN4m3'', ''item.name is not what expected''); assert.equal(data[0].__v, 0, ''The item should be not previously edited''); }, xhr => { throw new Error(xhr.responseText); })'