hbs2/hbs2-tests/test/Main.hs

18 lines
205 B
Haskell

module Main where
import Test.Tasty
import Test.Tasty.HUnit
main :: IO ()
main =
defaultMain $
testGroup "root"
[
testCase "test1" test1
]
test1 :: IO ()
test1 = do
pure ()