aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
Diffstat (limited to 'grunt.js')
-rw-r--r--grunt.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/grunt.js b/grunt.js
index 74713be5d..3d861be85 100644
--- a/grunt.js
+++ b/grunt.js
@@ -261,11 +261,14 @@ grunt.initConfig({
files: grunt.file.expandFiles( "tests/unit/**/*.html" ).filter(function( file ) {
// disabling everything that doesn't (quite) work with PhantomJS for now
// except for all|index|test, try to include more as we go
- return !( /(all|index|test|draggable|droppable|selectable|resizable|sortable|dialog|slider|datepicker|tabs|tabs_deprecated)\.html/ ).test( file );
+ return !( /(all|all-active|index|test|draggable|droppable|selectable|resizable|sortable|dialog|slider|datepicker|tabs|tabs_deprecated)\.html/ ).test( file );
})
},
lint: {
- ui: "ui/*",
+ ui: grunt.file.expandFiles( "ui/*.js" ).filter(function( file ) {
+ // remove items from this list once rewritten
+ return !( /(effects.core|mouse|datepicker|draggable|droppable|resizable|selectable|sortable)\.js$/ ).test( file );
+ }),
grunt: "grunt.js",
tests: "tests/unit/**/*.js"
},