Issue #1:
Running my test suite under 0.3.2 passes.
Running it under 0.3.3 fails with this message:
TypeError: 'null' is not an object (evaluating 'a.appendChild')
and can be tracked down to this function used for testing React components:
(defn add-test-div [name]
(let [doc js/document
body (.-body js/document)
div (.createElement doc "div")]
(.appendChild body div)
div))
Issue #2:
Running the test suite under 0.3.3 with slimerjs dropped into as a straight
replacement for phantomjs, I get this failure:
Subprocess failed
Here is my cljsbuild test configuration:
:test-commands
{"client-test" [;;"phantomjs" :runner
"slimerjs" :runner
"resources/es5-shim.js"
"resources/es5-sham.js"
"resources/console-polyfill.js"
"resources/public/js/client-test.js"]}
--
Note that posts from new members are moderated - please be patient with your
first post.
---
You received this message because you are subscribed to the Google Groups
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/clojurescript.