We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89281e0 commit 5c30658Copy full SHA for 5c30658
editors/code/src/commands.ts
@@ -1115,8 +1115,9 @@ export function runSelected(ctx: CtxInit): Cmd {
1115
position: position,
1116
});
1117
1118
- if (!test)
+ if (!test) {
1119
return;
1120
+ }
1121
1122
const task = await createTask(test!.runnable, ctx.config);
1123
return vscode.tasks.executeTask(task);
@@ -1146,8 +1147,9 @@ export function debugSelected(ctx: CtxInit): Cmd {
1146
1147
1148
1149
1150
1151
1152
1153
1154
return startDebugSession(ctx, test!.runnable);
1155
},
0 commit comments