stevebuik / greased

Faster Lightning development and testing
MIT License
26 stars 2 forks source link

FEATURE: parallel test support #5

Open stevebuik opened 7 years ago

stevebuik commented 7 years ago

currently the samples use a single chain of promises. This could, in many cases, be run in parallel and drive N components concurrently in a test page. The tricky part will be recombining all the failures and passes at the end of each fork into an overall success.

There is support for "all" in some promise implementations so this could be used to recombine all the fork results.

The benefit will be faster test runs when testing N components at the same time.