mirror of
https://github.com/videojs/video.js.git
synced 2024-12-04 10:34:51 +02:00
be0febaad9
Removed flwplayer folder. Added phantomjs for Travis CI test running, including temp makefile.
10 lines
247 B
Makefile
10 lines
247 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 |