You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: