diff --git a/src/test/suite/extension.test.ts b/src/test/suite/extension.test.ts index cfaa59f..33f68c1 100644 --- a/src/test/suite/extension.test.ts +++ b/src/test/suite/extension.test.ts @@ -23,18 +23,18 @@ suite("Extension Test Suite", () => { }); }); -suite("YourCommand Test Suite", () => { - test("Test alicloud.api.restart command", async () => { - // 这里我们假设指令 `extension.sayHello` 可以正常运行且不返回任何值 - // 注意,对于返回结果或者有其他作用的指令,你可能需要更复杂的验证逻辑 - await vscode.commands.executeCommand("alicloud.api.restart"); - console.log("alicloud.api.restart successfully executed"); +// suite("YourCommand Test Suite", () => { +// test("Test alicloud.api.restart command", async () => { +// // 这里我们假设指令 `extension.sayHello` 可以正常运行且不返回任何值 +// // 注意,对于返回结果或者有其他作用的指令,你可能需要更复杂的验证逻辑 +// await vscode.commands.executeCommand("alicloud.api.restart"); +// console.log("alicloud.api.restart successfully executed"); - // 如果指令成功执行,我们仅简单地验证一下(根据具体实现你还可以进行更多检查) - assert.ok(true, "alicloud.api.restart successfully executed"); +// // 如果指令成功执行,我们仅简单地验证一下(根据具体实现你还可以进行更多检查) +// assert.ok(true, "alicloud.api.restart successfully executed"); - // 示例:如果该指令返回了一个值,可以使用assert来验证该值 - // let result = await vscode.commands.executeCommand('extension.sayHello'); - // assert.strictEqual(result, 'expectedResult', 'extension.sayHello返回了意外的结果'); - }); -}); +// // 示例:如果该指令返回了一个值,可以使用assert来验证该值 +// // let result = await vscode.commands.executeCommand('extension.sayHello'); +// // assert.strictEqual(result, 'expectedResult', 'extension.sayHello返回了意外的结果'); +// }); +// });