From 9243b9565aa84bc23d2fb79c690c1f8b66aebb71 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 12 Apr 2013 09:05:48 -0400 Subject: [PATCH] Grunt: Allow tabs tests to run in PhantomJS. (cherry picked from commit dd58f9832ba34cf99bc3245d0c4c6ccc486a2ddc) Conflicts: Gruntfile.js --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 4fc719a81..9c2c88dd3 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|dialog_deprecated|tabs|tooltip)\.html$/ ).test( file ); + return !( /(all|index|test|dialog|dialog_deprecated|tooltip)\.html$/ ).test( file ); }) }, jshint: { -- 2.39.5