runSpecWithSummaryAndConfig : RunConfig -> Spec () () -> IO Summary Run a spec suite with custom configuration and return the summary.
Visibility: exportrunSpecWithSummary : Spec () () -> IO Summary Run a spec suite and return the summary without exiting. Useful for
meta-testing (testing evince with evince).
Visibility: exportrunSpecWith : RunConfig -> Spec () () -> IO () Run a spec suite with custom configuration.
Visibility: exportrunSpec : Spec () () -> IO () Run a spec suite, print colored results, exit with code 1 if any test failed.
Visibility: exportrunSpecFailFast : Spec () () -> IO () Run with fail-fast enabled — stop after the first failure.
Visibility: exportrunSpecTimed : Spec () () -> IO () Run with per-test timing displayed.
Visibility: exportrunSpecWithArgs : Spec () () -> IO () Run a spec suite, reading CLI args for configuration.
Visibility: export