Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
type
ProgressCallback = Progress -> IO ()hspec-core Test.Hspec.Core.Extension.Item Callback used by composite test items that contain many tests to report their progress towards finishing them all. This is used, for example, to report how many QuickCheck examples are finished.
itemIsParallelizable :: Item a -> Maybe Boolhspec-core Test.Hspec.Core.Extension.Item A flag that indicates whether it is safe to evaluate this spec item in parallel with other spec items
paramsSmallCheckDepth :: Params -> Maybe Inthspec-core Test.Hspec.Core.Extension.Item No documentation available.
afterAll :: HasCallStack => ActionWith a -> SpecWith a -> SpecWith ahspec-core Test.Hspec.Core.Hooks Run a custom action after the last spec item.
afterAll_ :: HasCallStack => IO () -> SpecWith a -> SpecWith ahspec-core Test.Hspec.Core.Hooks Run a custom action after the last spec item.
aroundAll :: HasCallStack => (ActionWith a -> IO ()) -> SpecWith a -> Spechspec-core Test.Hspec.Core.Hooks Wrap an action around the given spec.
aroundAllWith :: HasCallStack => (ActionWith a -> ActionWith b) -> SpecWith a -> SpecWith bhspec-core Test.Hspec.Core.Hooks Wrap an action around the given spec. Changes the arg type inside.
aroundAll_ :: HasCallStack => (IO () -> IO ()) -> SpecWith a -> SpecWith ahspec-core Test.Hspec.Core.Hooks Wrap an action around the given spec.
beforeAll :: HasCallStack => IO a -> SpecWith a -> Spechspec-core Test.Hspec.Core.Hooks Run a custom action before the first spec item.
beforeAllWith :: HasCallStack => (b -> IO a) -> SpecWith a -> SpecWith bhspec-core Test.Hspec.Core.Hooks Run a custom action with an argument before the first spec item.