Long Nguyen
Long Nguyen
@vzaidman Yeah, this my current configuration. ``` trackAllPureComponents: true, trackHooks: true, ```
Hey @vzaidman, thank for your suggestion. I've added a condition before set whyDidYouRender to false. ``` const antComponents = require('antd'); Object.values(antComponents).forEach(c => { if (typeof c === 'function') { c.whyDidYouRender...
@vzaidman It came from `rc-table/es/Body/index.js` - a dependency used in Table component of Ant Design.
@vzaidman I don't know why but it still doesn't work although I've imported directly and set `whyDidYouRender = false` for each component already. https://codesandbox.io/s/turn-off-specific-component-in-whydidyourender-wdm64?file=/wdyr.js
In my case, I want to connect and create WebDriver to multi-devices at beforeEach, to run test cases in parallel.
My workaround is use fetch api to request to localhost:4040 and retry again.
@bubenshchykov New error appears > VM1379:64 Error: connect ECONNREFUSED 127.0.0.1:4041 > at TCPConnectWrap.afterConnect [as oncomplete]
@goldcome This project won't be updated anymore, so you could make a fork to resolve your issue. My suggestion to get HTTP is don't set --secure as an argument.
Sorry my bad question. I release that my root link also included path in it. Replace: def apiRoot = "http://api.chatwork.com/v2" def contactsPath = "/contacts" by def apiRoot = "http://api.chatwork.com" def...
To resolve "javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated" issue I just import lastest version of httpclient to Gradle/Maven `compile 'org.apache.httpcomponents:httpclient:4.5.3'` It took me 2 days to resolves. I hope this will be...