vscode/scripts/test-integration.bat

27 lines
1.1 KiB
Batchfile
Raw Normal View History

2016-04-28 14:15:19 +00:00
@echo off
setlocal
2017-04-26 08:17:59 +00:00
pushd %~dp0\..
if not "%APPVEYOR%" == "" (
set ELECTRON_RUN_AS_NODE=
)
2017-03-17 17:19:31 +00:00
set VSCODEUSERDATADIR=%TMP%\vscodeuserfolder-%RANDOM%-%TIME:~6,5%
2016-04-29 07:44:54 +00:00
:: Tests in the extension host
2017-03-17 17:19:31 +00:00
.\scripts\code.bat %~dp0\..\extensions\vscode-api-tests\testWorkspace --extensionDevelopmentPath=%~dp0\..\extensions\vscode-api-tests --extensionTestsPath=%~dp0\..\extensions\vscode-api-tests\out --disableExtensions --user-data-dir=%VSCODEUSERDATADIR%
.\scripts\code.bat %~dp0\..\extensions\vscode-colorize-tests\test --extensionDevelopmentPath=%~dp0\..\extensions\vscode-colorize-tests --extensionTestsPath=%~dp0\..\extensions\vscode-colorize-tests\out --user-data-dir=%VSCODEUSERDATADIR%
.\scripts\code.bat $%~dp0\..\extensions\emmet\test-fixtures --extensionDevelopmentPath=%~dp0\..\extensions\emmet --extensionTestsPath=%~dp0\..\extensions\emmet\out\test --disableExtensions --user-data-dir=%VSCODEUSERDATADIR%
2016-04-28 14:15:19 +00:00
:: Integration & performance tests in AMD
.\scripts\test.bat --runGlob **\*.integrationTest.js %*
:: Tests in commonJS (language servers tests...)
.\scripts\mocha-electron.bat .\extensions\html\server\out\test\
2017-03-17 17:19:31 +00:00
rmdir /s /q %VSCODEUSERDATADIR%
2017-04-26 08:17:59 +00:00
popd
2017-03-07 16:28:16 +00:00
endlocal