fix[test]: Don't test read/show instances for more than a second
This commit is contained in:
parent
c87cbb5405
commit
5ccb477a50
1 changed files with 2 additions and 1 deletions
|
@ -33,5 +33,6 @@ allTests :: [(String, Property)]
|
|||
allTests = $allProperties
|
||||
|
||||
testGroup :: TestTree
|
||||
testGroup = Tasty.localOption (QuickCheckMaxSize 25) -- it is necessary to restrain the size because the generated core would get veeeeeery big otherwise
|
||||
testGroup = Tasty.localOption (QuickCheckMaxSize 5) -- anything above 25 doesn't finish in reasonable time on my laptop
|
||||
$ Tasty.QuickCheck.testProperties $moduleName allTests
|
||||
-- I don't want to stress-tess or bench-mark it, just prove it works cause I hacked a little around it.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue