mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-09 15:12:21 +00:00
15 lines
449 B
Haskell
15 lines
449 B
Haskell
module Main (main) where
|
|
|
|
import Test.Tasty
|
|
import Test.Tasty.Ingredients.Rerun (defaultMainWithRerun)
|
|
|
|
import Properties
|
|
import UnitTests
|
|
import TimeVarTests
|
|
|
|
main :: IO ()
|
|
main = do
|
|
tests1 <- unitTestFolder "examples/"
|
|
tests2 <- compileTestFolder "examples/"
|
|
tests3 <- compileVideoFolder "videos/"
|
|
defaultMainWithRerun $ testGroup "tests" [tests1, tests2, tests3, all_props, timeVarTests]
|