Landon Schropp

Results 81 comments of Landon Schropp

Hmm, I don't think so. I'm running `2.35.1` currently, which is fairly up-to-date. Are you maybe using a more powerful machine than me? Could you try generating another 100,000 commits...

@stsewd I just checked and I believe that the indentation module [is enabled](https://github.com/LunarVim/LunarVim/blob/rolling/lua/core/treesitter.lua#L24) in my setup (LunarVim), but I don't believe the it's working for JavaScript.

@lelandrichardson This issue has turned into a blocker for my team, and I'd love to help resolve it. * Would you be open to accepting a PR to fix this?...

@ljharb Thanks for the quick reply! Could you explain the purpose of `nodeToHostName`? My understanding of React is that it normally calls the component tree from the top down. Is...

I think I have a workable solution to this problem. I rewrote `nodeToHostNode` and took a recursive approach. In the case of an array, I grabbed its first child's HTML...

Thanks for the quick reply! We'll give this workaround a try. In the meantime, should this behavior eventually be changed? I've run into a similar use case before where I...

In that case above, I think this would be a little more convenient for me: ``` component.find('AwesomeTableCell').setProps({ name: "Jordan" }); ```

@ljharb Maybe I'm missing something here, but isn't it impossible to test `AwesomeTableCell` without first sticking it in the other table elements? I think react requires `` to be inside...

@ljharb Thanks again for the detailed replies. I'm still getting used to testing React with Enzyme, and it seems to me I still have some learning to do to properly...

@trotzig Thanks for the workaround! That seems to get me past the issue. 🙂