Paweł Gościcki

Results 44 comments of Paweł Gościcki

I've also run into this issue. The above method for mocking out `useSelector` or `useDispatch` no longer works, and with upgrading to latest react-redux all tests written in this way...

I understand, and I agree that mocking hooks is probably not the best way to go about things. However, this is a very simple "api" in that all it takes...

This would be extremely helpful. I almost gave up trying to install ruby 2.7 with jemalloc support before stumbling upon this issue with detailed guide on what needs to be...

Well, the problem with setting `chromeWebSecurity` to `false` is that I can no longer manipulate iframes (as described in this post: https://www.cypress.io/blog/2020/02/12/working-with-iframes-in-cypress), so unfortunately that is not an option for...

@gsamokovarov with `EnforcedStyle: require_parentheses` configuration option there's no way to exclude a list of methods, which should be left without parentheses. In other words, I'd like rubocop, with `EnforcedStyle: require_parentheses`...

What is the current status of this? Will we have Babel 6 support or is this still blocked? The two blocking issues mentioned in the description are closed at babel,...

I think the maintainers of this gem are just trying to tell us that Ruby and modern Javascript don't go well together (despite what @dhh et. al. would make you...

Fair enough @guilleiguaran :)

The workaround is to put this into `config/initializers/formtastic_bootstrap.rb`: ``` ruby class FormtasticBootstrap::Inputs::CountryInput def to_html bootstrap_wrapping do builder.country_select(method, input_options, form_control_input_html_options) end end end ``` (BTW for formtastic-bootstrap version < 3.0.0 the...

`country_select` is not in the gemspec (not here nor in the base formtastic gem), formtastic supports it only if the gem is installed (bundled). If it's not, it will raise...