Nested Parallelization

Our HttpServer tests create multiple files, then start the server. But what if we could do all that work in parallel? Thanks to async/await and Promise.all(), we can. Not only is the final result faster, it’s nicer to read too.

comments powered by Disqus