packages feed

ihp-datasync-1.5.0: Test/Main.hs

module Main where

import Prelude
import Test.Hspec
import qualified Test.DataSync.DynamicQueryCompiler
import qualified Test.DataSync.TypedEncoder
import qualified Test.DataSync.ChangeNotifications
import qualified Test.DataSync.RLSIntegrationSpec
import qualified Test.DataSync.DataSyncIntegrationSpec

main :: IO ()
main = hspec do
    Test.DataSync.DynamicQueryCompiler.tests
    Test.DataSync.TypedEncoder.tests
    Test.DataSync.ChangeNotifications.tests
    Test.DataSync.RLSIntegrationSpec.tests
    Test.DataSync.DataSyncIntegrationSpec.tests