cloudcmd/test/test.sh
2012-09-17 10:05:54 -04:00

16 lines
No EOL
666 B
Bash

#!/bin/sh
#linting js files
npm i jshint
echo "jshint server.js client.js cloudcmd.js"
./node_modules/jshint/bin/hint --config ./test/.jshintrc ./server.js ./client.js ./cloudcmd.js
echo "jshint lib/cloudfunc.js lib/client/keyBinding.js"
./node_modules/jshint/bin/hint --config ./test/.jshintrc ./lib/cloudfunc.js ./node_modules/minify/minify.js ./lib/client/keyBinding.js
echo "jshint ./package.json ./config.json"
./node_modules/jshint/bin/hint --config ./test/.jshintrc ./package.json ./config.json
#linting css files
npm i recess
echo "recess css/*.css"
./node_modules/recess/bin/recess css/*.css
node ./test/test.js
node cloudcmd.js test
ls ./min