purescript-cheerio/test/Test/Main.purs
2018-01-17 23:53:58 -05:00

21 lines
493 B
Haskell

module Test.Main where
import Prelude hiding (eq)
import Control.Monad.Eff (Eff)
import Control.Monad.Eff.AVar (AVAR)
import Control.Monad.Eff.Console (CONSOLE)
import Test.Unit (TestSuite)
import Test.Unit.Console (TESTOUTPUT)
import Test.Unit.Main (runTest)
import Test.Cheerio as C
import Test.Cheerio.Static as CS
main :: Eff (avar :: AVAR, console :: CONSOLE, testOutput :: TESTOUTPUT) Unit
main = runTest suites
suites :: forall eff. TestSuite eff
suites = do
C.suites
CS.suites