2.0 KiB
2.0 KiB
id, title, challengeType, forumTopicId, localeTitle
| id | title | challengeType | forumTopicId | localeTitle |
|---|---|---|---|---|
| 587d7fb5367417b2b2512c04 | Remove a Package from Your Dependencies | 2 | 301530 | Удалить пакет из ваших зависимостей |
Description
Instructions
Tests
tests:
- text: '"dependencies" should not include "moment"'
testString: getUserInput => $.get(getUserInput('url') + '/_api/package.json').then(data => { var packJson = JSON.parse(data); assert.notProperty(packJson.dependencies, 'moment', '"dependencies" still includes "moment"'); }, xhr => { throw new Error(xhr.responseText); })