File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
test/integrationTests/testAssets Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,10 @@ export async function activate(context: vscode.ExtensionContext): Promise<{ init
4545
4646 return {
4747 initializationFinished : Promise . all ( [ omniSharpPromise , coreClrDebugPromise ] )
48- . then ( a => { } )
48+ . then ( promiseResult => {
49+ // This promise resolver simply swallows the result of Promise.all. When we decide we want to expose this level of detail
50+ // to other extensions then we will design that return type and implement it here.
51+ } )
4952 } ;
5053}
5154
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export class TestAssetWorkspace {
4747 }
4848
4949 get vsCodeDirectoryPath ( ) : string {
50- return path . join ( vscode . workspace . rootPath , ".vscode" ) ; ;
50+ return path . join ( vscode . workspace . rootPath , ".vscode" ) ;
5151 }
5252
5353 get launchJsonPath ( ) : string {
You can’t perform that action at this time.
0 commit comments