aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-11-09 16:27:45 -0500
committerMike Sherov <mike.sherov@gmail.com>2012-11-09 16:27:45 -0500
commit254f2b3698265bdcb7daa85f8c7e2c27192cd090 (patch)
tree90f4946be9136ccd9462ab202096945d952e47be /grunt.js
parent543abc9b1ff6cafdea7cd1be5835f04104cdb8da (diff)
downloadjquery-ui-254f2b3698265bdcb7daa85f8c7e2c27192cd090.tar.gz
jquery-ui-254f2b3698265bdcb7daa85f8c7e2c27192cd090.zip
Dev: fix the datepicker test suite and jshint everything. Fixes #8804 - Dev: re-enable the datepicker test suite
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 84b2b7e8d..f960e90bc 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|dialog|slider|datepicker|tabs|tooltip)\.html$/ ).test( file );
+ return !( /(all|all-active|index|test|dialog|slider|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)\.js$/ ).test( file );
+ return !( /(mouse)\.js$/ ).test( file );
}),
grunt: [ "grunt.js", "build/**/*.js" ],
tests: "tests/unit/**/*.js"