1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-04 06:48:49 +02:00
video.js/Makefile

11 lines
246 B
Makefile
Raw Normal View History

# Using makefile temporarily to run tests on Travis CI
test:
2013-01-11 00:10:48 +03:00
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
2013-01-11 00:10:48 +03:00
.PHONY: test