Module

Contract.Test.Mote

Re-exports from Mote.TestPlanM

#TestPlanM

type TestPlanM test a = MoteT Aff test Aff a

#interpretWithConfig

#interpret

interpret :: TestPlanM (Aff Unit) Unit -> Aff Unit

We use mote here so that we can use effects to build up a test tree, which is then interpreted here in a pure context, mainly due to some painful types in Test.Spec which prohibit effects. https://github.com/Plutonomicon/cardano-transaction-lib/blob/develop/doc/plutip-testing.md#testing-with-mote

Modules