diff --git a/render/tests/test-hyperscript.js b/render/tests/test-hyperscript.js index 3ef03358..641eea2e 100644 --- a/render/tests/test-hyperscript.js +++ b/render/tests/test-hyperscript.js @@ -17,13 +17,6 @@ o.spec("hyperscript", function() { o(vnode.tag).equals("a") }) o("v1.0.1 bug-for-bug regression suite", function(){ - o - console.log(m('a', { - class: null - }).attrs, { - class: undefined, - className: null - }) o(m('a', { class: null }).attrs).deepEquals({ @@ -47,12 +40,6 @@ o.spec("hyperscript", function() { class: undefined, className: true }) - console.log(m('a.x', { - class: null - }).attrs, { - class: undefined, - className: "x null" - }) o(m('a.x', { class: null }).attrs).deepEquals({