(env item & [options])
Returns a new test environment to test the behavior of the given item.
Returns a new test environment to test the behavior of the given item.
(execute-effect! env eff)
Executed the given effect in the given test environment, and return toplevel changes as a 'return' value.
Executed the given effect in the given test environment, and return toplevel changes as a 'return' value.
(inject-action! comp action)
Does the things that would happen if the given component emitted the given action, and returns what would be emitted (state and/or actions) from the tested item, in the form of a 'return' value.
Does the things that would happen if the given component emitted the given action, and returns what would be emitted (state and/or actions) from the tested item, in the form of a 'return' value.
(inject-action!! comp action)
Like inject-action!
, but also recursively update the item to new states that are returned.
Like [[inject-action!]], but also recursively update the item to new states that are returned.
(inject-return! comp ret)
Does the things that would happen if the given component returned the given 'return' value in reaction to some discrete event, and returns what would be emitted (state and/or actions) from the tested item, in the form of a 'return' value.
Does the things that would happen if the given component returned the given 'return' value in reaction to some discrete event, and returns what would be emitted (state and/or actions) from the tested item, in the form of a 'return' value.
(inject-return!! comp ret)
Like inject-return!
, but also recursively update the item to new states that are returned.
Like [[inject-return!]], but also recursively update the item to new states that are returned.
(inject-state-change! comp state)
Does the things that would happen if the given component emitted the given new state, and returns what would be emitted (state and/or actions) from the tested item, in the form of a 'return' value.
Does the things that would happen if the given component emitted the given new state, and returns what would be emitted (state and/or actions) from the tested item, in the form of a 'return' value.
(inject-state-change!! comp state)
Like inject-state-change!
, but also recursively update the item to new states that are returned.
Like [[inject-state-change!]], but also recursively update the item to new states that are returned.
(invoke-callback! comp callback event)
Invokes the function assiciated with the given callback
of the
given test component of a dom element (e.g. :onclick
), with the
given event object, and returns a changed app-state and actions from
the toplevel item, in the form of a reacl/return
value.
Invokes the function assiciated with the given `callback` of the given test component of a dom element (e.g. `:onclick`), with the given event object, and returns a changed app-state and actions from the toplevel item, in the form of a `reacl/return` value.
(invoke-callback!! comp callback event)
Like invoke-callback!
, but also recursively update the item to new states that are returned.
Like [[invoke-callback!]], but also recursively update the item to new states that are returned.
(mount! env state)
Mounts the item of the given test environment with the given state, and returns actions and maybe a changed state.
Mounts the item of the given test environment with the given state, and returns actions and maybe a changed state.
(mount!! env state)
Like mount!
, but also recursively update the item to new states that are returned.
Like [[mount!]], but also recursively update the item to new states that are returned.
(push! env ret)
Apply the state change in the given 'return' value, if there is any, and merge the return value resulting from that - pushing the update cycle one turn.
Apply the state change in the given 'return' value, if there is any, and merge the return value resulting from that - pushing the update cycle one turn.
(push!! env ret)
Recursively apply the state change in the given 'return' value, until the state does not change anymore.
Recursively apply the state change in the given 'return' value, until the state does not change anymore.
(send-message! comp msg)
Sends a message to the given component or the toplevel component of the given test environment, and returns actions and maybe a changed state.
Sends a message to the given component or the toplevel component of the given test environment, and returns actions and maybe a changed state.
(send-message!! comp msg)
Like send-message!
, but also recursively update the item to new states that are returned.
Like [[send-message!]], but also recursively update the item to new states that are returned.
(unmount! env)
Unmounts the item of the given test environment, and return actions and maybe a changed state.
Unmounts the item of the given test environment, and return actions and maybe a changed state.
(unmount!! env)
Like unmount!
, but also recursively update the item to new states that are returned.
Like [[unmount!]], but also recursively update the item to new states that are returned.
(update! env state)
Updates the state of the item of the given test environment, and returns actions and maybe a changed state.
Updates the state of the item of the given test environment, and returns actions and maybe a changed state.
(update!! env state)
Updates the state of the item of the given test environment, and if the state is changed in reaction to that, then keeps on updating it. Returns actions and the final changed state, if it was changed at all. Throws if there are more than max-update-loops recursions, which are a sign for bug in the item.
Updates the state of the item of the given test environment, and if the state is changed in reaction to that, then keeps on updating it. Returns actions and the final changed state, if it was changed at all. Throws if there are more than *max-update-loops* recursions, which are a sign for bug in the item.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close