Skip to content

Commit

Permalink
Don't need this await
Browse files Browse the repository at this point in the history
  • Loading branch information
juliasilge committed Feb 25, 2025
1 parent 5be7005 commit 3528afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/positron-r/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export async function registerCommands(context: vscode.ExtensionContext, runtime
}),

vscode.commands.registerCommand('r.packageTestExplorer', async () => {
await vscode.commands.executeCommand('workbench.view.testing.focus');
vscode.commands.executeCommand('workbench.view.testing.focus');
onDidDiscoverTestFiles(event => {
vscode.commands.executeCommand('testing.runAll');
});
Expand Down

0 comments on commit 3528afe

Please sign in to comment.