1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-29 17:30:09 +02:00

add test task, avoid attempt to run tests in unrelated html files

This commit is contained in:
Hakim El Hattab
2013-08-24 10:52:35 -04:00
parent 7f85c21386
commit 1c8fd60595
3 changed files with 7 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ module.exports = function(grunt) {
// Tests will be added soon
qunit: {
files: [ 'test/**/*.html' ]
files: [ 'test/*.html' ]
},
uglify: {
@@ -130,4 +130,7 @@ module.exports = function(grunt) {
// Serve presentation locally
grunt.registerTask( 'serve', [ 'connect', 'watch' ] );
// Run tests
grunt.registerTask( 'test', [ 'jshint', 'qunit' ] );
};