vscode/scripts/test.bat

25 lines
519 B
Batchfile
Raw Normal View History

@echo off
setlocal
2016-01-04 11:35:25 +00:00
set ELECTRON_RUN_AS_NODE=1
2016-01-04 11:35:25 +00:00
pushd %~dp0\..
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESHORT:"=%.exe
set CODE=".build\electron\%NAMESHORT%"
rem TFS Builds
if not "%BUILD_BUILDID%" == "" (
%CODE% .\node_modules\mocha\bin\_mocha %*
)
rem Otherwise
if "%BUILD_BUILDID%" == "" (
%CODE% .\node_modules\mocha\bin\_mocha %* | .\resources\win32\bin\cat
)
2016-01-04 11:35:25 +00:00
popd
endlocal
2016-03-03 10:26:05 +00:00
exit /b %errorlevel%