mirror of
https://github.com/videojs/video.js.git
synced 2024-12-14 11:23:30 +02:00
11 lines
246 B
Makefile
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
|