X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=test%2FMakefile;h=2c830864622d103c6b85d5a9a5f947e0b5416aec;hb=0b59d256dbe318de407c748d0468f0e56e39a01d;hp=b9ea996050ed8c7e75a9856bd6c98b16faa524bc;hpb=751f456c8754f1adeada606b404cd0f54b367cbc;p=mkws-moved-to-github.git diff --git a/test/Makefile b/test/Makefile index b9ea996..2c83086 100644 --- a/test/Makefile +++ b/test/Makefile @@ -4,18 +4,23 @@ MIKE = PATH=$$PATH:/usr/local/lib/node-v0.10.24-linux-x64/bin NPM_INSTALL_FLAGS=-q PHANTOMJS= ./node_modules/phantomjs/bin/phantomjs +PHANTOMJS_URL= https://mkws-dev.indexdata.com/jasmine-popup.html +PHANTOMJS_TIMEOUT= 12 +IMAGES= ./images all: check clean: + rm -f mkws-error.png mkws-error.html -distclean: +distclean: clean rm -rf node_modules mkws-complete-syntax-check: ${MAKE} -C../tools/htdocs $@ check: mkws-complete-syntax-check + @if [ ! -e node_modules ]; then echo "please run first: make node-modules"; exit 1; fi jasmine-node --noColor --captureExceptions --forceexit ./spec jasmine-node --noColor --captureExceptions --forceexit ./spec-sp @@ -25,11 +30,13 @@ terse: $(MIKE) jasmine-node --noColor --captureExceptions --forceexit spec phantomjs: - @# ${PHANTOMJS} phantom/evaluate.js https://mkws-dev.indexdata.com/jasmine-local-popup.html - ${PHANTOMJS} phantom/evaluate.js https://mkws-dev.indexdata.com/jasmine-popup.html + ${PHANTOMJS} phantom/evaluate.js ${PHANTOMJS_URL} ${PHANTOMJS_TIMEOUT} + +screenshot: + ${PHANTOMJS} phantom/screenshot.js ${PHANTOMJS_URL} ${IMAGES}/screenshot.png 1200 jsbeautifier jsb indent: - for i in ./spec*/*.js ./js/*.js; do \ + for i in ./spec*/*.js ./js/*.js ./phantom/*.js; do \ jsbeautifier -j $$i > $@.tmp && mv -f $@.tmp $$i; \ done