runSpecAsyncWith : RunConfig -> Spec (Async Poll []) () () -> IO () Run a spec under the multi-threaded posix driver with custom configuration,
printing results and exiting non-zero if any test failed.
Visibility: exportrunSpecAsync : Spec (Async Poll []) () () -> IO () Run a spec under the multi-threaded posix driver with default configuration.
Visibility: exportrunSpecAsyncWithSummaryAndConfig : RunConfig -> Spec (Async Poll []) () () -> IO Summary Run under the posix driver with custom configuration and return the summary
without exiting. Useful for meta-testing.
Visibility: exportrunSpecAsyncWithSummary : Spec (Async Poll []) () () -> IO Summary Run under the posix driver and return the summary without exiting.
Visibility: exportrunSpecAsyncWithArgs : Spec (Async Poll []) () () -> IO () Run a spec under the posix driver, reading CLI args (e.g. `--jobs=N`).
Visibility: exportrunSpecAsyncFailFast : Spec (Async Poll []) () () -> IO () Run under the posix driver with fail-fast - stop after the first failure.
Visibility: exportrunSpecAsyncTimed : Spec (Async Poll []) () () -> IO () Run under the posix driver with per-test timing displayed.
Visibility: exportrunSpecAsyncIO : Spec IO () () -> IO () Run a concrete `Spec IO` under the posix driver, hoisting its actions into
`Async` via `liftIO`.
Visibility: exportrunSpecAsyncIOWith : RunConfig -> Spec IO () () -> IO () Like `runSpecAsyncIO`, with custom configuration.
Visibility: export