2013-11-17 22:54:12 +00:00
|
|
|
@echo off
|
|
|
|
|
2013-12-15 16:53:10 +00:00
|
|
|
rem test TiddlyWiki5 for tiddlywiki.com
|
2013-11-17 22:54:12 +00:00
|
|
|
|
|
|
|
rem Set up the build output directory
|
|
|
|
|
2013-11-26 21:43:00 +00:00
|
|
|
if "x%TW5_BUILD_OUTPUT%" == "x" (
|
|
|
|
set TW5_BUILD_OUTPUT=..\jermolene.github.com
|
|
|
|
)
|
2013-11-17 22:54:12 +00:00
|
|
|
|
2013-11-26 21:43:00 +00:00
|
|
|
if not exist %TW5_BUILD_OUTPUT%\nul (
|
|
|
|
echo A valid TW5_BUILD_OUTPUT environment variable must be set
|
|
|
|
exit 1
|
|
|
|
)
|
2013-11-17 22:54:12 +00:00
|
|
|
|
|
|
|
echo Using TW5_BUILD_OUTPUT as %TW5_BUILD_OUTPUT%
|
|
|
|
|
|
|
|
rem Run the test edition to run the node.js tests and to generate test.html for tests in the browser
|
|
|
|
|
|
|
|
node .\tiddlywiki.js ^
|
|
|
|
.\editions\test ^
|
2014-04-27 07:28:21 +00:00
|
|
|
--output %TW5_BUILD_OUTPUT% ^
|
2013-11-17 22:54:12 +00:00
|
|
|
--verbose ^
|
2014-04-27 07:28:21 +00:00
|
|
|
--rendertiddler $:/core/save/all test.html text/plain ^
|
2013-11-17 22:54:12 +00:00
|
|
|
|| exit 1
|