Creighton Kirkendall

Results 53 comments of Creighton Kirkendall

Any ideas on this, I am experiencing the same issue. I have a test setup that works in figwheel that uses optimization `:none` in browser but fails in phantom with...

I think I found the issue, there is note about overwriting the file-min: https://github.com/cljsjs/packages/tree/master/react#testutils

@JarrodCTaylor - bingo! I got it working. I added the following to my compiler options. ``` clj :foreign-libs [{:provides ["cljsjs.react"] :file "https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react-with-addons.js" :file-min "https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react-with-addons.js"}] ```

This looks to be an easy fix. Will try to get it in this weekend.

If you could can you pull down the latest and do an lein install and test it with your app before I make a release. I pushed up the fix.

Can you post the code that returns nill on .-innerHTML? That seems like something is wrong. That is how I do it in enfocus tests. You might need to pull...

What browser are you using? Also try this and let me know what you get. ``` clojure (apply str (for [node (test-template)] (.-innerHTML node)) ```

so like deftemplate and defsnippet but the node already exists in the dom?

yes it has to be part of the dom for the transforms to be possible.

I think we should add it to bind-form and bind-input. Since the user is providing the render-view function for bind-view and could include any call back functionality in that, it...