From 0097471ebc2bd6dc0cbd2db09778e52680d9a6f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Thu, 2 May 2024 16:28:54 +0200 Subject: [PATCH] Improving message of installation of extension for tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit previously it was always marking it as success even if it wasn't the case Signed-off-by: Aurélien Pupier --- src/test/runTests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/runTests.ts b/src/test/runTests.ts index fd52e8695..57a9abefb 100644 --- a/src/test/runTests.ts +++ b/src/test/runTests.ts @@ -50,7 +50,7 @@ function installExtraExtension(cliPath: string, extensionId: string, args: strin stdio: 'inherit', shell: os.platform() === 'win32' // to workaround https://github.com/nodejs/node/issues/52554#issuecomment-2060026269 }); - console.log(`VS Code extension ${extensionId} installed`); + console.log(`A message of type "Extension '${extensionId}' vx.y.z was successfully installed." must be written few lines above if installation really worked.`); } main();