Don't jshint or test the muxing test page
Add rules to exclude the muxing utility page from jshint and qunit.
Showing
1 changed file
with
3 additions
and
2 deletions
... | @@ -46,7 +46,7 @@ module.exports = function(grunt) { | ... | @@ -46,7 +46,7 @@ module.exports = function(grunt) { |
46 | } | 46 | } |
47 | }, | 47 | }, |
48 | qunit: { | 48 | qunit: { |
49 | files: ['test/**/*.html', '!test/perf.html'] | 49 | files: ['test/**/*.html', '!test/perf.html', '!test/muxer/**'] |
50 | }, | 50 | }, |
51 | jshint: { | 51 | jshint: { |
52 | gruntfile: { | 52 | gruntfile: { |
... | @@ -68,7 +68,8 @@ module.exports = function(grunt) { | ... | @@ -68,7 +68,8 @@ module.exports = function(grunt) { |
68 | src: ['test/**/*.js', | 68 | src: ['test/**/*.js', |
69 | '!test/tsSegment.js', | 69 | '!test/tsSegment.js', |
70 | '!test/fixtures/*.js', | 70 | '!test/fixtures/*.js', |
71 | '!test/manifest/**'] | 71 | '!test/manifest/**', |
72 | '!test/muxer/**'] | ||
72 | } | 73 | } |
73 | }, | 74 | }, |
74 | connect: { | 75 | connect: { | ... | ... |
-
Please register or sign in to post a comment