У меня есть следующая задача VSCode, которая запускает сценарий npm, однако сценарий не может обнаружить переменные среды.Каков правильный подход к передаче переменных среды для задачи типа «npm»?
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"options": {
"env": {
"imp_deviceName": "myName",
"imp_fixtureName": "myFixtureName",
"imp_authKey": "yyyyyyyyyyyyyyy",
"imp_loginKey": "xxxxxxxxxxxxx",
}
},
"script": "app-tests-core",
"problemMatcher": []
}
]
}
Сам скрипт содержит следующее:
"app-tests-core": "mocha \"integration/test/app/**/app.core.test.js\" --timeout 30000 --reporter mocha-teamcity-reporter",