From 9e688d92ba078562ea6ef6ccc94cf06ed9e67748 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Wed, 27 Nov 2024 11:32:49 -0800 Subject: [PATCH] Add terminal suggest tests to run on Windows Part of #234777 --- scripts/test-integration.bat | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/test-integration.bat b/scripts/test-integration.bat index 5c832677ca6..b59cceada07 100644 --- a/scripts/test-integration.bat +++ b/scripts/test-integration.bat @@ -52,6 +52,11 @@ echo ### Colorize tests call npm run test-extension -- -l vscode-colorize-tests if %errorlevel% neq 0 exit /b %errorlevel% +echo. +echo ### Terminal Suggest tests +call npm run test-extension -- -l terminal-suggest --enable-proposed-api=vscode.vscode-api-tests +if %errorlevel% neq 0 exit /b %errorlevel% + echo. echo ### TypeScript tests call "%INTEGRATION_TEST_ELECTRON_PATH%" %~dp0\..\extensions\typescript-language-features\test-workspace --extensionDevelopmentPath=%~dp0\..\extensions\typescript-language-features --extensionTestsPath=%~dp0\..\extensions\typescript-language-features\out\test\unit %API_TESTS_EXTRA_ARGS%