Skip to content

Latest commit

 

History

History
389 lines (226 loc) · 5.15 KB

File metadata and controls

389 lines (226 loc) · 5.15 KB

This is project is dead with no active maintainer. If you want to maintain this, let me know.

Build Status Bower version Dependency Status

Module Test.Mocha

Before

data Before :: !

Describe

data Describe :: !

It

data It :: !

After

data After :: !

Done

data Done :: !

DoneToken

data DoneToken
  = DoneToken 

DoItSync

type DoItSync = forall a eff. String -> Eff eff a -> Eff (it :: It | eff) Unit

it

it :: DoItSync

itOnly

itOnly :: DoItSync

itSkip

itSkip :: DoItSync

DoItSyncTimeout

type DoItSyncTimeout = forall a eff. String -> Number -> Eff eff a -> Eff (it :: It | eff) Unit

it'

it' :: DoItSyncTimeout

itOnly'

itOnly' :: DoItSyncTimeout

itSkip'

itSkip' :: DoItSyncTimeout

DoItAsync

type DoItAsync = forall a eff. String -> (DoneToken -> Eff (done :: Done | eff) a) -> Eff (it :: It | eff) Unit

itAsync

itAsync :: DoItAsync

itOnlyAsync

itOnlyAsync :: DoItAsync

itSkipAsync

itSkipAsync :: DoItAsync

DoItAsyncTimeout

type DoItAsyncTimeout = forall a eff. String -> Number -> (DoneToken -> Eff (done :: Done | eff) a) -> Eff (it :: It | eff) Unit

itAsync'

itAsync' :: DoItAsyncTimeout

itOnlyAsync'

itOnlyAsync' :: DoItAsyncTimeout

itSkipAsync'

itSkipAsync' :: DoItAsyncTimeout

xit

xit :: forall eff. String -> Eff eff Unit

DoDescribe

type DoDescribe = forall eff a. String -> Eff (describe :: Describe | eff) a -> Eff (describe :: Describe | eff) Unit

describe

describe :: DoDescribe

describeOnly

describeOnly :: DoDescribe

describeSkip

describeSkip :: DoDescribe

xdescribe

xdescribe :: DoDescribe

xdescribe'

xdescribe' :: forall eff. String -> Eff eff Unit

DoBefore

type DoBefore = forall eff a. Eff eff a -> Eff (before :: Before | eff) Unit

before

before :: DoBefore

beforeEach

beforeEach :: DoBefore

DoBeforeTimeout

type DoBeforeTimeout = forall eff a. Number -> Eff eff a -> Eff (before :: Before | eff) Unit

before'

before' :: DoBeforeTimeout

beforeEach'

beforeEach' :: DoBeforeTimeout

DoBeforeAsync

type DoBeforeAsync = forall eff a. (DoneToken -> Eff (done :: Done | eff) a) -> Eff (before :: Before | eff) Unit

beforeAsync

beforeAsync :: DoBeforeAsync

beforeEachAsync

beforeEachAsync :: DoBeforeAsync

DoBeforeAsyncTimeout

type DoBeforeAsyncTimeout = forall eff a. Number -> (DoneToken -> Eff (done :: Done | eff) a) -> Eff (before :: Before | eff) Unit

beforeAsync'

beforeAsync' :: DoBeforeAsyncTimeout

beforeEachAsync'

beforeEachAsync' :: DoBeforeAsyncTimeout

DoAfter

type DoAfter = forall eff a. Eff eff a -> Eff (after :: After | eff) Unit

after

after :: DoAfter

afterEach

afterEach :: DoAfter

DoAfterTimeout

type DoAfterTimeout = forall eff a. Number -> Eff eff a -> Eff (after :: After | eff) Unit

after'

after' :: DoAfterTimeout

afterEach'

afterEach' :: DoAfterTimeout

DoAfterAsync

type DoAfterAsync = forall eff a. (DoneToken -> Eff (done :: Done | eff) a) -> Eff (after :: After | eff) Unit

afterAsync

afterAsync :: DoAfterAsync

afterEachAsync

afterEachAsync :: DoAfterAsync

DoAfterAsyncTimeout

type DoAfterAsyncTimeout = forall eff a. Number -> (DoneToken -> Eff (done :: Done | eff) a) -> Eff (after :: After | eff) Unit

afterAsync'

afterAsync' :: DoAfterAsyncTimeout

afterEachAsync'

afterEachAsync' :: DoAfterAsyncTimeout

itIs

itIs :: forall eff. DoneToken -> Eff (done :: Done | eff) Unit

itIsNot

itIsNot :: forall eff a. DoneToken -> Eff (done :: Done | eff) Unit