X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2FMakefile;h=b9ea996050ed8c7e75a9856bd6c98b16faa524bc;hb=751f456c8754f1adeada606b404cd0f54b367cbc;hp=e1f5a09c622ab36d81445c046e5e29713d91ac10;hpb=5596eeb1810b8afa9170069bde38fc20e395085c;p=mkws-moved-to-github.git diff --git a/test/Makefile b/test/Makefile index e1f5a09..b9ea996 100644 --- a/test/Makefile +++ b/test/Makefile @@ -3,6 +3,7 @@ # For running on Mike's local install of node.js MIKE = PATH=$$PATH:/usr/local/lib/node-v0.10.24-linux-x64/bin NPM_INSTALL_FLAGS=-q +PHANTOMJS= ./node_modules/phantomjs/bin/phantomjs all: check @@ -15,25 +16,27 @@ mkws-complete-syntax-check: ${MAKE} -C../tools/htdocs $@ check: mkws-complete-syntax-check - for i in ./spec/*.js; do \ - echo "$$i"; \ - jasmine-node --noColor --captureExceptions --forceexit $$i; \ - done + jasmine-node --noColor --captureExceptions --forceexit ./spec + jasmine-node --noColor --captureExceptions --forceexit ./spec-sp test: check 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 + jsbeautifier jsb indent: - for i in ./spec/*.js ./js/*.js; do \ + for i in ./spec*/*.js ./js/*.js; do \ jsbeautifier -j $$i > $@.tmp && mv -f $@.tmp $$i; \ done node-modules: node_modules node_modules: - npm install ${NPM_INSTALL_FLAGS} jQuery xmlhttprequest jsdom request jasmine-node + npm install ${NPM_INSTALL_FLAGS} jQuery xmlhttprequest jsdom request jasmine-node phantomjs help: - @echo "make [ all | check | clean | distclean ]" + @echo "make [ all | check | phantomjs | clean | distclean ]" @echo " [ jsbeautifier | node-modules ]"