Привет! Я пытаюсь настроить фреймворки Mocka и Chai с помощью кода Visual Studio, но я получаю сообщение об ошибке при попытке запустить модульный тест mocha, говоря:
Атрибут 'program' не существует ('C: \ Users ... node_modules / mocha / bin / _mocha')
http://prikachi.com/images/321/9672321w.png
Это должно быть что-то из настроек. Это JSON-файл конфигурации VS Code launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"bdd",
"--timeout",
"999999",
"--colors",
"${file}"
],
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${file}"
}
]
}