aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-10-30 21:50:08 -0400
committerScott González <scott.gonzalez@gmail.com>2012-10-30 22:19:55 -0400
commitb49e071d39795255e88b13ae172367201484c352 (patch)
tree4df1090ad188613efe93f4c54949fcd1b66716bf /grunt.js
parentf0daa220d67968f61c42e378b10fcb41687cd215 (diff)
downloadjquery-ui-b49e071d39795255e88b13ae172367201484c352.tar.gz
jquery-ui-b49e071d39795255e88b13ae172367201484c352.zip
Dev: Standardized the selectable test suite. Fixed #8752 - Dev: Get selectable test suite to pass
Diffstat (limited to 'grunt.js')
-rw-r--r--grunt.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/grunt.js b/grunt.js
index e70a32871..9c2999e3b 100644
--- a/grunt.js
+++ b/grunt.js
@@ -281,13 +281,13 @@ grunt.initConfig({
files: grunt.file.expandFiles( "tests/unit/**/*.html" ).filter(function( file ) {
// disabling everything that doesn't (quite) work with PhantomJS for now
// TODO except for all|index|test, try to include more as we go
- return !( /(all|all-active|index|test|droppable|selectable|resizable|sortable|dialog|slider|datepicker|tabs|tooltip)\.html$/ ).test( file );
+ return !( /(all|all-active|index|test|droppable|resizable|sortable|dialog|slider|datepicker|tabs|tooltip)\.html$/ ).test( file );
})
},
lint: {
ui: grunt.file.expandFiles( "ui/*.js" ).filter(function( file ) {
// TODO remove items from this list once rewritten
- return !( /(mouse|datepicker|droppable|resizable|selectable|sortable)\.js$/ ).test( file );
+ return !( /(mouse|datepicker|droppable|resizable|sortable)\.js$/ ).test( file );
}),
grunt: [ "grunt.js", "build/**/*.js" ],
tests: "tests/unit/**/*.js"