diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2012-10-30 19:12:17 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-30 22:13:43 -0400 |
commit | f0daa220d67968f61c42e378b10fcb41687cd215 (patch) | |
tree | 3e1fd19ad737b784ee1d4f7fe7202fa92bc51237 /grunt.js | |
parent | d693ce5324f6f3be8479ef083e4eaf3c705ef043 (diff) | |
download | jquery-ui-f0daa220d67968f61c42e378b10fcb41687cd215.tar.gz jquery-ui-f0daa220d67968f61c42e378b10fcb41687cd215.zip |
Dev: Standardized the draggable test suite. Fixed #8748 - Dev: Get draggable test suite to pass
Diffstat (limited to 'grunt.js')
-rw-r--r-- | grunt.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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|draggable|droppable|selectable|resizable|sortable|dialog|slider|datepicker|tabs|tooltip)\.html$/ ).test( file ); + return !( /(all|all-active|index|test|droppable|selectable|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|draggable|droppable|resizable|selectable|sortable)\.js$/ ).test( file ); + return !( /(mouse|datepicker|droppable|resizable|selectable|sortable)\.js$/ ).test( file ); }), grunt: [ "grunt.js", "build/**/*.js" ], tests: "tests/unit/**/*.js" |