Joe Boyle
Joe Boyle
Yeah, that's the one concern I would have with puppeteer. `Promise.all` doesn't natively support any kind of pooling or concurrency limit, but there are some libraries and solutions here: https://stackoverflow.com/questions/40639432/what-is-the-best-way-to-limit-concurrency-when-using-es6s-promise-all...
By the way, no obligation to merge this PR! I only wanted to mention how you could parallelize those slow requests, but free to close the PR if you prefer...
You should be able to solve this by adding this to the top of any test files that require `document`: ``` /** * @jest-environment jsdom */ ```
This appears to be the same issue as #188
You should be able to solve this by adding this to the top of any test files that require `window/document`: ``` /** * @jest-environment jsdom */ ```
I had some time so I added a few more tests. Also, It looks like the Netlify pipeline isn't passing because it's still on Node 8, but Jest 26/27 require...
Hi @jjalonso, I haven't run into problems with any other React hooks, I included `useState` in the docs because the usage might not be intuitive, and included `useEffect` because there...