Browse Source

Fixed an error where a test result was being loaded for something that wasn't listed in the MANIFEST.

John Resig 16 years ago
parent
commit
46108b54b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dep/web/webrunner.js

+ 1 - 1
dep/web/webrunner.js

@@ -462,7 +462,7 @@
 
 			for ( var result in results ) {
 				// Skip results that we're filtering out
-				if ( !filter.test(result) )
+				if ( !filter.test(result) || !tests[result] )
 					continue;
 
 				var tmp = processWinner(results[result].total);