/
DonCerradon
/
Lesson1
Обзор
Документация
Войти
/
DonCerradon
/
Lesson1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
.vscode/tasks.json
31 строка
1 KB
DonCerradon
Первоначальное заполнение репозитория
13 фев 2026, 12:05
13 фев 2026, 12:05
cb3de35
Код
Авторство
О чём код?
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Run current feature in 1C:Enterprise", "type": "shell", "command": "vrunner vanessa --path \"${workspaceFolder}\\${relativeFile}\"", "problemMatcher": [] }, { "label": "Run current feature in 1C:Enterprise + WAIT", "type": "shell", "command": "SET VANESSA_VANESSASHUTDOWN=0 && SET VANESSA_CLOSETESTCLIENT=0 && vrunner vanessa --path \"${workspaceFolder}\\${relativeFile}\"", "problemMatcher": [] }, { "label": "Load current feature in 1C:Enterprise + wait", "type": "shell", "command": "SET VANESSA_VANESSARUN=0 && SET VANESSA_VANESSASHUTDOWN=0 && SET VANESSA_CLOSETESTCLIENT=0 && vrunner vanessa --path \"${workspaceFolder}\\${relativeFile}\"", "problemMatcher": [] }, { "label": "echo file names", "type": "shell", "command": "echo ${workspaceFolder} - ${fileDirname} - ${relativeFile} - ${workspaceFolder}\\${relativeFile} - ${file}", "problemMatcher": [] } ] }