2016-04-28 14:15:19 +00:00
|
|
|
@echo off
|
|
|
|
setlocal
|
|
|
|
|
2017-04-26 08:17:59 +00:00
|
|
|
pushd %~dp0\..
|
|
|
|
|
2016-04-29 08:35:31 +00:00
|
|
|
if not "%APPVEYOR%" == "" (
|
2016-09-14 05:29:20 +00:00
|
|
|
set ELECTRON_RUN_AS_NODE=
|
2016-04-29 08:35:31 +00:00
|
|
|
)
|
2017-03-17 17:19:31 +00:00
|
|
|
set VSCODEUSERDATADIR=%TMP%\vscodeuserfolder-%RANDOM%-%TIME:~6,5%
|
2016-04-29 07:44:54 +00:00
|
|
|
|
2017-11-15 10:15:41 +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%
|
2017-09-13 18:08:31 +00:00
|
|
|
.\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
|
|
|
|
2017-11-15 10:15:41 +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-03-17 15:52:31 +00:00
|
|
|
|
2017-04-26 08:17:59 +00:00
|
|
|
popd
|
|
|
|
|
2017-03-07 16:28:16 +00:00
|
|
|
endlocal
|