1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-04 06:23:13 +03:00
juvix/test/Compilation.hs

9 lines
249 B
Haskell
Raw Normal View History

module Compilation where
import Base
import Compilation.Negative qualified as N
import Compilation.Positive qualified as P
allTests :: TestTree
2023-12-01 18:50:37 +03:00
allTests = testGroup "Juvix compilation pipeline tests" [P.allTestsNoOptimize, P.allTests, N.allTests]