Module
Yoga.Om.Test
- Package
- purescript-spec-om
- Repository
- rowtype-yoga/purescript-spec-om
#shouldEqual Source
shouldEqual :: forall m t. MonadEffect m => Show t => Eq t => t -> t -> m Unit#shouldNotEqual Source
shouldNotEqual :: forall m t. MonadEffect m => Show t => Eq t => t -> t -> m Unit#shouldSatisfy Source
shouldSatisfy :: forall m t. MonadEffect m => Show t => t -> (t -> Boolean) -> m Unit#shouldNotSatisfy Source
shouldNotSatisfy :: forall m t. MonadEffect m => Show t => t -> (t -> Boolean) -> m Unit#shouldContain Source
shouldContain :: forall m f a. MonadEffect m => Show a => Eq a => Show (f a) => Foldable f => f a -> a -> m Unit#shouldNotContain Source
shouldNotContain :: forall m f a. MonadEffect m => Show a => Eq a => Show (f a) => Foldable f => f a -> a -> m Unit#textContentShouldEqual Source
textContentShouldEqual :: forall m. MonadEffect m => HTMLElement -> String -> m UnitRe-exports from Test.Spec
#SpecT Source
newtype SpecT :: (Type -> Type) -> Type -> (Type -> Type) -> Type -> Typenewtype SpecT g i m a
Instances
Newtype (SpecT g i m a) _(Functor m) => Functor (SpecT g i m)(Apply m) => Apply (SpecT g i m)(Applicative m) => Applicative (SpecT g i m)(Alt m) => Alt (SpecT g i m)(Plus m) => Plus (SpecT g i m)(Alternative m) => Alternative (SpecT g i m)(Bind m) => Bind (SpecT g i m)(Monad m) => Monad (SpecT g i m)(MonadRec m) => MonadRec (SpecT g i m)(MonadPlus m) => MonadPlus (SpecT g i m)MonadTrans (SpecT g i)(MonadEffect m) => MonadEffect (SpecT g i m)(MonadCont m) => MonadCont (SpecT g i m)(MonadThrow e m) => MonadThrow e (SpecT g i m)(MonadError e m) => MonadError e (SpecT g i m)(MonadAsk r m) => MonadAsk r (SpecT g i m)(MonadReader r m) => MonadReader r (SpecT g i m)(MonadState s m) => MonadState s (SpecT g i m)
#sequential Source
sequential :: forall m g i a. Monad m => SpecT g i m a -> SpecT g i m amarks all spec items of the given spec to be evaluated sequentially.
#focus Source
focus :: forall m g i a. FocusWarning => Monad m => SpecT g i m a -> SpecT g i m afocus focuses all spec items of the given spec.
Applying focus to a spec with focused spec items has no effect.
#beforeAll_ Source
beforeAll_ :: forall m g i a. MonadEffect m => MonadAff g => MonadError Error g => g Unit -> SpecT g i m a -> SpecT g i m aRun a custom action before the first spec item.
- Modules
- Yoga.
Om. Test