Преглед на файлове

feat(devcontainer): try provide --bootstrap arg and use global phpunit

rugk преди 5 месеца
родител
ревизия
422f149c52
променени са 1 файла, в които са добавени 5 реда и са изтрити 2 реда
  1. 5 2
      .vscode/settings.json

+ 5 - 2
.vscode/settings.json

@@ -2,8 +2,11 @@
     "files.associations": {
         "**/cfg/conf*.php": "ini"
     },
-    "phpunit.phpunit": "${workspaceFolder}/vendor/bin/phpunit",
+    "phpunit.phpunit": "${userHome}/.composer/vendor/bin/phpunit",
     "phpunit.args": [
-        "--configuration '${workspaceFolder}/tst/phpunit.xml'"
+        "--configuration",
+        "${workspaceFolder}/tst/phpunit.xml",
+        "--bootstrap",
+        "${workspaceFolder}/tst/Bootstrap.php"
     ]
 }