mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 17:19:01 +01:00
@@ -35,8 +35,8 @@ suite.only('workspace-namespace', () => {
|
||||
customProp1: 'testing task one'
|
||||
};
|
||||
const writeEmitter = new vscode.EventEmitter<string>();
|
||||
const execution = new vscode.CustomExecution2((): Thenable<vscode.TerminalVirtualProcess> => {
|
||||
return Promise.resolve(<vscode.TerminalVirtualProcess>{
|
||||
const execution = new vscode.CustomExecution2((): Thenable<vscode.Pseudoterminal> => {
|
||||
return Promise.resolve(<vscode.Pseudoterminal>{
|
||||
onDidWrite: writeEmitter.event,
|
||||
start: () => {
|
||||
writeEmitter.fire('testing\r\n');
|
||||
|
||||
Reference in New Issue
Block a user