1 2 3 4 5 6 7 8 9 10 11 12 13 14
module Felix.Test.All where import Base import Felix.Test.Golden import Felix.Test.Unit import Test.Tasty runTests :: IO () runTests = defaultMain =<< tests tests :: IO TestTree tests = testGroup "all tests" <$> sequence [goldenTests, return unitTests]