polysemy-process-0.14.1.0: test/Polysemy/Process/Test/Run.hs
module Polysemy.Process.Test.Run where import Hedgehog (TestLimit, property, test, withTests) import Polysemy.Test (UnitTest) import Test.Tasty (TestName, TestTree) import Test.Tasty.Hedgehog (testProperty) unitTestTimes :: TestLimit -> TestName -> UnitTest -> TestTree unitTestTimes n desc = testProperty desc . withTests n . property . test