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]