vscode/scripts/test.bat

25 lines
543 B
Batchfile
Raw Normal View History

@echo off
setlocal
2016-01-04 12:35:25 +01:00
set ELECTRON_RUN_AS_NODE=1
2016-01-04 12:35:25 +01: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 --colors --reporter dot %* | .\resources\win32\bin\cat
)
2016-01-04 12:35:25 +01:00
popd
endlocal
2016-03-03 11:26:05 +01:00
exit /b %errorlevel%