From db2f768bd90dd37a7109cd2c8a48d269749075a6 Mon Sep 17 00:00:00 2001 From: Michael H Date: Mon, 29 Sep 2025 00:45:32 +1000 Subject: [PATCH] vscode: remove old test runner codelens stuff (#23003) ### What does this PR do? fix #23001 by removing references to old codelens from before the native integration which should have its own (better and) native way of starting ### How did you verify your code works? --- .github/workflows/vscode-release.yml | 5 +++++ packages/bun-vscode/README.md | 2 +- packages/bun-vscode/package.json | 16 +--------------- 3 files changed, 7 insertions(+), 16 deletions(-) diff --git a/.github/workflows/vscode-release.yml b/.github/workflows/vscode-release.yml index 6948756388..db0695ed25 100644 --- a/.github/workflows/vscode-release.yml +++ b/.github/workflows/vscode-release.yml @@ -45,3 +45,8 @@ jobs: env: VSCE_PAT: ${{ secrets.VSCODE_EXTENSION }} working-directory: packages/bun-vscode/extension + + - uses: actions/upload-artifact@v4 + with: + name: bun-vscode-${{ github.event.inputs.version }}.vsix + path: packages/bun-vscode/extension/bun-vscode-${{ github.event.inputs.version }}.vsix diff --git a/packages/bun-vscode/README.md b/packages/bun-vscode/README.md index bc54b4d1aa..e7f45596cf 100644 --- a/packages/bun-vscode/README.md +++ b/packages/bun-vscode/README.md @@ -22,7 +22,7 @@ At its core is the _Bun runtime_, a fast JavaScript runtime designed as a drop-i ## Features: - Live in-editor error messages (gif below) -- Test runner codelens +- Vscode test runner support - Debugger support - Run scripts from package.json - Visual lockfile viewer for old binary lockfiles (`bun.lockb`) diff --git a/packages/bun-vscode/package.json b/packages/bun-vscode/package.json index 65b389cca4..8e0eafc7af 100644 --- a/packages/bun-vscode/package.json +++ b/packages/bun-vscode/package.json @@ -1,6 +1,6 @@ { "name": "bun-vscode", - "version": "0.0.29", + "version": "0.0.31", "author": "oven", "repository": { "type": "git", @@ -116,20 +116,6 @@ "category": "Bun", "enablement": "!inDebugMode && resourceLangId =~ /^(javascript|typescript|javascriptreact|typescriptreact)$/ && !isInDiffEditor && resourceScheme == 'untitled'", "icon": "$(play-circle)" - }, - { - "command": "extension.bun.runTest", - "title": "Run all tests", - "shortTitle": "Run Test", - "category": "Bun", - "icon": "$(play)" - }, - { - "command": "extension.bun.watchTest", - "title": "Run all tests in watch mode", - "shortTitle": "Run Test Watch", - "category": "Bun", - "icon": "$(sync)" } ], "menus": {