diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-04-12 09:05:48 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-04-12 09:05:48 -0400 |
commit | dd58f9832ba34cf99bc3245d0c4c6ccc486a2ddc (patch) | |
tree | 881457082883265b78d839a09a78833dca0f843e /Gruntfile.js | |
parent | 445ffd0acc95e8c4adb4d63b12815e9bcac1c198 (diff) | |
download | jquery-ui-dd58f9832ba34cf99bc3245d0c4c6ccc486a2ddc.tar.gz jquery-ui-dd58f9832ba34cf99bc3245d0c4c6ccc486a2ddc.zip |
Grunt: Allow tabs tests to run in PhantomJS.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 24f84b715..d5b1a42c4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -318,7 +318,7 @@ grunt.initConfig({ files: 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|index|test|dialog|tabs|tooltip)\.html$/ ).test( file ); + return !( /(all|index|test|dialog|tooltip)\.html$/ ).test( file ); }) }, jshint: { |