mirror of
https://github.com/videojs/video.js.git
synced 2024-12-16 11:37:29 +02:00
3e35935182
- Temporarily killed API tests. Combining them with other tests. - Using browserify:watch for build/temp/video.js (sandbox testing) - Using karma:watch for automated tests Using individual watch tasks allows watchify to use smart caching in both instances. - Switched to grunt-concurrent for watch tasks - Switched to travis containers, sudo: false - Added caching of npm modules in Travis - Consolidated travis testing - Cleaned up grunt file - Fixed travis.yml spacing - Added the watchAll task for trying it out - Moved travis test script logic to package.json - Moved coverage reporting to Travis only closes #2254
18 lines
438 B
HTML
18 lines
438 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>VideoJS Tests</title>
|
|
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
|
|
<link rel="stylesheet" href="../build/temp/video-js.min.css">
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<script src="../node_modules/qunitjs/qunit/qunit.js"></script>
|
|
|
|
<!-- Execute the bundled tests first -->
|
|
<script src="../build/temp/tests.js"></script>
|
|
|
|
</body>
|
|
</html>
|