trace-embrace-1.0.2: test/Driver.hs
module Driver where
import qualified Discovery
import Test.Tasty
main :: IO ()
main = defaultMain =<< testTree
where
testTree :: IO TestTree
testTree = do
tests <- Discovery.tests
pure $ testGroup "trace-embrace" [ tests ]