(
fileUri: vscode.Uri,
runInDebugger: boolean,
describeBlockName?: string,
describeBlockLineNumber?: number,
outputPath?: string,
)
| 91 | } |
| 92 | |
| 93 | private async launchTests( |
| 94 | fileUri: vscode.Uri, |
| 95 | runInDebugger: boolean, |
| 96 | describeBlockName?: string, |
| 97 | describeBlockLineNumber?: number, |
| 98 | outputPath?: string, |
| 99 | ): Promise<boolean> { |
| 100 | const launchType = runInDebugger ? LaunchType.Debug : LaunchType.Run; |
| 101 | const launchConfig = this.createLaunchConfig( |
| 102 | fileUri, |
| 103 | launchType, |
| 104 | describeBlockName, |
| 105 | describeBlockLineNumber, |
| 106 | outputPath, |
| 107 | ); |
| 108 | return this.launch(launchConfig); |
| 109 | } |
| 110 | |
| 111 | private createLaunchConfig( |
| 112 | fileUri: vscode.Uri, |
no test coverage detected