I had to put the check for 'typeof console != "undefined"' back in, otherwise IE...
[jquery.git] / build / test / data / testrunner.js
index 0b6e08d..ea73127 100644 (file)
@@ -55,7 +55,7 @@ function test(name, callback) {
                try {
                        callback();
                } catch(e) {
-                       if( console && console.error ) {
+                       if( typeof console != "undefined" && console.error && console.warn ) {
                                console.error("Test " + name + " died, exception and test follows");
                                console.error(e);
                                console.warn(callback.toString());