mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-12 00:23:08 +00:00
12 lines
288 B
Haskell
12 lines
288 B
Haskell
module Main (main) where
|
|
|
|
import Test.Tasty
|
|
|
|
import UnitTests
|
|
|
|
main :: IO ()
|
|
main = do
|
|
tests1 <- unitTestFolder "examples/"
|
|
tests2 <- compileTestFolder "examples/"
|
|
tests3 <- compileVideoFolder "videos/"
|
|
defaultMain $ testGroup "tests" [tests1, tests2, tests3]
|