1
1
mirror of https://github.com/anoma/juvix.git synced 2024-09-17 19:47:45 +03:00
juvix/test/Compilation.hs
2023-12-01 16:50:37 +01:00

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]