mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 17:32:00 +03:00
9 lines
223 B
Haskell
9 lines
223 B
Haskell
module Core where
|
|
|
|
import Base
|
|
import Core.Eval qualified as Eval
|
|
import Core.Transformation qualified as Transformation
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "JuvixCore tests" [Eval.allTests, Transformation.allTests]
|