summaryrefslogtreecommitdiff
path: root/source/Felix/Test/All.hs
blob: 7cdc49ca8c18b47caf56cb9c0ad36d172f6dea69 (plain)
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]