Skip to content
Permalink
Browse files
Make it so that you can filter tests by keyword.
  • Loading branch information
jeresig committed Aug 31, 2007
1 parent e326306 commit fbd2b06
Showing 1 changed file with 1 addition and 1 deletion.
@@ -74,7 +74,7 @@ function test(name, callback, nowait) {
name = _config.currentModule + " module: " + name;

var filter = location.search.slice(1);
if ( filter && encodeURIComponent(name) != filter )
if ( filter && encodeURIComponent(name).indexOf(filter) == -1 )
return;

synchronize(function() {

0 comments on commit fbd2b06

Please sign in to comment.