Travis Chapman

Results 6 comments of Travis Chapman

I had to add "fluxxor" and "lodash-node" to my `unmockedModulePathPatterns` to get past this error.

Here's some [code](https://github.com/techapman/React-Fluxxor-CoffeeScript) more or less copied from the quick start example. I set up TodoItem components to render with style green if complete and red otherwise. I'm trying to...

Thanks for the quick, thorough response! On a related note: how would you test Fluxxor stores? I unit tested actions by making a mock `dispatch` function on the actions object,...

Great, I [tried](https://github.com/techapman/React-Fluxxor-CoffeeScript/blob/master/src/coffee/stores/__tests__/todo-store-test.coffee) the second approach since `__handleAction__` isn't exposed publicly. When I created my flux instance, I did it without providing actions (i.e. `flux = new Fluxxor.Flux(stores)`). I figured...

What do you have in mind to clean things up? Maybe I could submit a pull request. :-)

I just wrote tests (available [here](https://github.com/techapman/React-Fluxxor-CoffeeScript/tree/master/src/coffee)) for the example Todo app in the quick start guide. I feel like it would be helpful for others to add sample tests to...