[Lldb-commits] [lldb] [lldb-dap] expand tilde in dap executable path (PR #162635)

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 31 09:15:11 PDT 2025


================
@@ -53,9 +55,10 @@
     "bundle-symbols-table-view": "npx tsc -p src-ts/webview --noEmit && npx esbuild src-ts/webview/symbols-table-view.ts --bundle --format=iife --outdir=./out/webview",
     "bundle-tabulator": "cp node_modules/tabulator-tables/dist/js/tabulator.min.js ./out/webview/ && cp node_modules/tabulator-tables/dist/css/tabulator_midnight.min.css ./out/webview/ && cp node_modules/tabulator-tables/dist/css/tabulator_simple.min.css ./out/webview/",
     "bundle-webview": "npm run bundle-symbols-table-view && npm run bundle-tabulator",
+    "check-unit": "npx tsc -p ./ && mocha ./out/unittests-ts",
----------------
ashgti wrote:

If we add `@vscode/test-cli` to the deps we could use `vscode-test` here instead.

https://github.com/microsoft/vscode-test-cli for reference.

https://github.com/llvm/llvm-project/pull/162635


More information about the lldb-commits mailing list