Skip to content

Commit

Permalink
debug finalize testRun in DebugSessionOptions
Browse files Browse the repository at this point in the history
Closes #214486
  • Loading branch information
connor4312 committed Jun 18, 2024
1 parent 57842d1 commit b41efb1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"src/**/*",
"../../../src/vscode-dts/vscode.d.ts",
"../../../src/vscode-dts/vscode.proposed.testObserver.d.ts",
"../../../src/vscode-dts/vscode.proposed.attributableCoverage.d.ts",
"../../../src/vscode-dts/vscode.proposed.testRunInDebug.d.ts",
"../../../src/vscode-dts/vscode.proposed.attributableCoverage.d.ts"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ export const allApiProposals = Object.freeze({
terminalSelection: 'https://github.com/raw/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalSelection.d.ts',
terminalShellIntegration: 'https://github.com/raw/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalShellIntegration.d.ts',
testObserver: 'https://github.com/raw/microsoft/vscode/main/src/vscode-dts/vscode.proposed.testObserver.d.ts',
testRunInDebug: 'https://github.com/raw/microsoft/vscode/main/src/vscode-dts/vscode.proposed.testRunInDebug.d.ts',
textSearchProvider: 'https://github.com/raw/microsoft/vscode/main/src/vscode-dts/vscode.proposed.textSearchProvider.d.ts',
timeline: 'https://github.com/raw/microsoft/vscode/main/src/vscode-dts/vscode.proposed.timeline.d.ts',
tokenInformation: 'https://github.com/raw/microsoft/vscode/main/src/vscode-dts/vscode.proposed.tokenInformation.d.ts',
Expand Down
7 changes: 7 additions & 0 deletions src/vscode-dts/vscode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16183,6 +16183,13 @@ declare module 'vscode' {
* When true, the debug viewlet will not be automatically revealed for this session.
*/
suppressDebugView?: boolean;

/**
* Signals to the editor that the debug session was started from a test run
* request. This is used to link the lifecycle of the debug session and
* test run in UI actions.
*/
testRun?: TestRun;
}

/**
Expand Down
18 changes: 0 additions & 18 deletions src/vscode-dts/vscode.proposed.testRunInDebug.d.ts

This file was deleted.

0 comments on commit b41efb1

Please sign in to comment.