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 5c30658 commit bfc9961Copy full SHA for bfc9961
editors/code/src/commands.ts
@@ -1119,7 +1119,7 @@ export function runSelected(ctx: CtxInit): Cmd {
1119
return;
1120
}
1121
1122
- const task = await createTask(test!.runnable, ctx.config);
+ const task = await createTask(test.runnable, ctx.config);
1123
return vscode.tasks.executeTask(task);
1124
},
1125
);
@@ -1151,7 +1151,7 @@ export function debugSelected(ctx: CtxInit): Cmd {
1151
1152
1153
1154
- return startDebugSession(ctx, test!.runnable);
+ return startDebugSession(ctx, test.runnable);
1155
1156
1157
};
0 commit comments