aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-10-31 08:30:01 -0400
committerScott González <scott.gonzalez@gmail.com>2012-10-31 09:50:36 -0400
commitd85b0160f2bd9030e2abc1a5d1d166602423cb11 (patch)
treebaab9e414b33ad0fe37e64e5e2fd8155099714d7 /grunt.js
parent8746042ae10070ecb3c35bd34238e146b6b2e3a5 (diff)
downloadjquery-ui-d85b0160f2bd9030e2abc1a5d1d166602423cb11.tar.gz
jquery-ui-d85b0160f2bd9030e2abc1a5d1d166602423cb11.zip
Dev: Standardized the resizable test suite. Fixed #8754 - Dev: Get resizable 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 cba7eb53f..85ec8611c 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|resizable|sortable|dialog|slider|datepicker|tabs|tooltip)\.html$/ ).test( file );
+ return !( /(all|all-active|index|test|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|resizable|sortable)\.js$/ ).test( file );
+ return !( /(mouse|datepicker|sortable)\.js$/ ).test( file );
}),
grunt: [ "grunt.js", "build/**/*.js" ],
tests: "tests/unit/**/*.js"