فهرست منبع

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"
     ]
 }