File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,13 @@ export class StreamingRunner implements vscode.Disposable {
250
250
251
251
if ( ! this . run ) {
252
252
this . run = this . createTestRun (
253
- new vscode . TestRunRequest ( ) ,
253
+ new vscode . TestRunRequest (
254
+ undefined ,
255
+ undefined ,
256
+ undefined ,
257
+ undefined ,
258
+ true ,
259
+ ) ,
254
260
"on_demand_run_in_terminal" ,
255
261
) ;
256
262
}
Original file line number Diff line number Diff line change @@ -386,12 +386,7 @@ export class TestController {
386
386
const testItem = await this . findTestItem ( name , uri ) ;
387
387
if ( ! testItem ) return ;
388
388
389
- await vscode . commands . executeCommand (
390
- "vscode.revealTestInExplorer" ,
391
- testItem ,
392
- ) ;
393
389
const tokenSource = new vscode . CancellationTokenSource ( ) ;
394
-
395
390
tokenSource . token . onCancellationRequested ( async ( ) => {
396
391
tokenSource . dispose ( ) ;
397
392
await vscode . window . showInformationMessage ( "Cancelled the progress" ) ;
You can’t perform that action at this time.
0 commit comments