release parallel test

This commit is contained in:
锦恢 2025-07-14 00:03:20 +08:00
parent 1c8a447dc7
commit 7b29584cb1
2 changed files with 5 additions and 0 deletions

View File

@ -237,6 +237,10 @@ export class MessageBridge {
return new Promise<RestFulResponse>((resolve, reject) => {
const handler = this.addCommandListener(command, (data) => {
if (data._id === undefined) {
console.warn('detect data without id, data: ' + JSON.stringify(data, null, 2));
}
if (data._id === _id) {
handler();
resolve(data as RestFulResponse);

View File

@ -79,6 +79,7 @@ export function revealOpenMcpWebviewPanel(
switch (command) {
case 'vscode/launch-signature':
const launchResult = {
_id: data._id,
code: 200,
msg: option
};