2013-05-25 15:39:57 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2013-12-15 16:53:10 +00:00
|
|
|
# test TiddlyWiki5 for tiddlywiki.com
|
2013-05-25 15:39:57 +00:00
|
|
|
|
|
|
|
# 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 \
|
|
|
|
--verbose \
|
2019-01-05 11:59:16 +00:00
|
|
|
--version \
|
2014-04-27 07:28:21 +00:00
|
|
|
--rendertiddler $:/core/save/all test.html text/plain \
|
2022-11-20 17:54:18 +00:00
|
|
|
--test \
|
2013-05-25 15:39:57 +00:00
|
|
|
|| exit 1
|
2014-10-15 20:55:45 +00:00
|
|
|
|
|
|
|
echo To run the tests in a browser, open "editions/test/output/test.html"
|