1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-14 11:23:30 +02:00
video.js/Makefile
2013-01-10 13:10:48 -08:00

11 lines
246 B
Makefile

# Using makefile temporarily to run tests on Travis CI
test:
jshint src/*.js --config .jshintrc
node test/server.js &
phantomjs test/phantom.js "http://localhost:3000/test/unit.html"
kill -9 `cat test/pid.txt`
rm test/pid.txt
.PHONY: test