packages feed

teardown-0.4.0.0: test/tasty/TestSuite.hs

{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
module Main where

import RIO

import Test.Tasty         (defaultMainWithIngredients, testGroup)
import Test.Tasty.Runners (consoleTestReporter, listingTests)

import qualified TeardownTest as Teardown

main :: IO ()
main = defaultMainWithIngredients
  [listingTests, consoleTestReporter]
  (testGroup "teardown library" [Teardown.tests])