cleanup screenshot file
[mkws-moved-to-github.git] / test / Makefile
1 # Copyright (c) 2013 IndexData ApS. http://indexdata.com
2
3 # For running on Mike's local install of node.js
4 MIKE = PATH=$$PATH:/usr/local/lib/node-v0.10.24-linux-x64/bin
5 NPM_INSTALL_FLAGS=-q
6 PHANTOMJS=      ./node_modules/phantomjs/bin/phantomjs
7
8 all: check
9
10 clean:
11         rm -f mkws-error.png
12
13 distclean: clean
14         rm -rf node_modules
15
16 mkws-complete-syntax-check:
17         ${MAKE} -C../tools/htdocs $@
18
19 check: mkws-complete-syntax-check
20         jasmine-node --noColor --captureExceptions --forceexit ./spec
21         jasmine-node --noColor --captureExceptions --forceexit ./spec-sp
22
23 test: check
24
25 terse:
26         $(MIKE) jasmine-node --noColor --captureExceptions --forceexit spec
27
28 phantomjs:
29         @# ${PHANTOMJS} phantom/evaluate.js https://mkws-dev.indexdata.com/jasmine-local-popup.html     
30         ${PHANTOMJS} phantom/evaluate.js https://mkws-dev.indexdata.com/jasmine-popup.html      
31
32 jsbeautifier jsb indent:
33         for i in ./spec*/*.js ./js/*.js; do \
34           jsbeautifier -j $$i > $@.tmp && mv -f $@.tmp $$i; \
35         done
36
37 node-modules: node_modules
38 node_modules:
39         npm install ${NPM_INSTALL_FLAGS} jQuery xmlhttprequest jsdom request jasmine-node phantomjs
40
41 help:
42         @echo "make [ all | check | phantomjs | clean | distclean ]"
43         @echo "     [ jsbeautifier | node-modules ]"