Revision b29aab011faca7ee37fc01f846a1acc28b18c30d authored by Einar Otto Stangvik on 30 March 2012, 08:26:33 UTC, committed by Einar Otto Stangvik on 30 March 2012, 08:26:33 UTC
2 parent s 17c8556 + bb3a255
Raw File
make.bat
@echo off

REM This file hijacks the make command from package.json, so that
REM the solution can be 'built' on Windows.

IF "%1"=="" GOTO Build
IF "%1"=="test" goto Test
GOTO End

:Build
mkdir build\Release
copy /Y lib\ValidationWindows.js build\Release\validation.js
copy /Y lib\BufferUtilWindows.js build\Release\bufferutil.js
GOTO End

:Test
node node_modules/mocha/bin/_mocha -t 2000 test/BufferPool.test.js test/Sender.test.js test/WebSocketServer.test.js test/Receiver.test.js test/Validation.test.js test/WebSocket.test.js

:End

back to top