Skip to content
Permalink
Browse files
Fixed minor bug with Safari and the test suite.
  • Loading branch information
jeresig committed Oct 3, 2006
1 parent 301e2b6 commit 215f785
Showing 1 changed file with 1 addition and 1 deletion.
@@ -55,7 +55,7 @@ function test(name, callback) {
try {
callback();
} catch(e) {
if(typeof console != "undefined") {
if( console && console.error ) {
console.error("Test " + name + " died, exception and test follows");
console.error(e);
console.warn(callback.toString());

0 comments on commit 215f785

Please sign in to comment.