mirror of
https://github.com/anoma/juvix.git
synced 2024-12-03 09:41:10 +03:00
9 lines
249 B
Haskell
9 lines
249 B
Haskell
module Compilation where
|
|
|
|
import Base
|
|
import Compilation.Negative qualified as N
|
|
import Compilation.Positive qualified as P
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "Juvix compilation pipeline tests" [P.allTestsNoOptimize, P.allTests, N.allTests]
|