compaREST/test/Spec.hs
iko 2440f23829
Added non-breaking changes to reports (#82)
* bumped resolver

* Added non-breaking changes to report

* Removed dead file

* Added backward issue descriptions

* Issue description reversing

* Changed wording slightly
2021-06-21 20:52:48 +03:00

13 lines
272 B
Haskell

module Main (main) where
import qualified Spec.Golden.TraceTree
import Test.Tasty
main :: IO ()
main = defaultMain =<< tests
tests :: IO TestTree
tests = do
goldenReportTree <- Spec.Golden.TraceTree.tests
return . localOption (mkTimeout 5000000) $ goldenReportTree