Skip to content

Commit

Permalink
api: move test output association to stable
Browse files Browse the repository at this point in the history
Closes #129201
  • Loading branch information
connor4312 committed Sep 16, 2021
1 parent 54758ae commit 026c2a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
5 changes: 4 additions & 1 deletion src/vs/vscode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14316,8 +14316,11 @@ declare module 'vscode' {
* such as colors and text styles, are supported.
*
* @param output Output text to append.
* @param location Indicate that the output was logged at the given
* location.
* @param test Test item to associate the output with.
*/
appendOutput(output: string): void;
appendOutput(output: string, location?: Location, test?: TestItem): void;

/**
* Signals that the end of the test run. Any tests included in the run whose
Expand Down
16 changes: 0 additions & 16 deletions src/vs/vscode.proposed.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1907,22 +1907,6 @@ declare module 'vscode' {
}
//#endregion

//#region non-error test output https://github.com/microsoft/vscode/issues/129201
interface TestRun {
/**
* Appends raw output from the test runner. On the user's request, the
* output will be displayed in a terminal. ANSI escape sequences,
* such as colors and text styles, are supported.
*
* @param output Output text to append.
* @param location Indicate that the output was logged at the given
* location.
* @param test Test item to associate the output with.
*/
appendOutput(output: string, location?: Location, test?: TestItem): void;
}
//#endregion

//#region proposed test APIs https://github.com/microsoft/vscode/issues/107467
export namespace tests {
/**
Expand Down

0 comments on commit 026c2a9

Please sign in to comment.