git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ded1402
)
Fixed missing brackets (d'oh)
author
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Tue, 5 Sep 2006 20:00:36 +0000
(20:00 +0000)
committer
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Tue, 5 Sep 2006 20:00:36 +0000
(20:00 +0000)
build/test/js/test.js
patch
|
blob
|
history
diff --git
a/build/test/js/test.js
b/build/test/js/test.js
index
98c5791
..
d478b63
100644
(file)
--- a/
build/test/js/test.js
+++ b/
build/test/js/test.js
@@
-52,9
+52,10
@@
function evaluateTest(files, num, js) {
try {
eval(js);
} catch(e) {
- if(typeof console != "undefined")
+ if(typeof console != "undefined") {
console.error(e);
console.debug(js);
+ }
Test.push( [ false, "Died on test #" + (Test.length+1) + ": " + e ] );
}