Liking cljdoc? Tell your friends :D

reacl-c.test-util.test-renderer


*max-update-loops*cljsdeprecated

source

describe-failed-findcljs

(describe-failed-find env item)
source

envcljs

(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.
sourceraw docstring

execute-effect!cljs

(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.
sourceraw docstring

findcljs

(find env item)
source

find-allcljs

(find-all env item)
source

find-all-namedcljs

(find-all-named env thing)
source

find-namedcljs

(find-named env thing)
source

get-componentcljs

(get-component env)
source

get-componentscljs

(get-components env)
source

inject-action!cljs

(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.
sourceraw docstring

inject-action!!cljs

(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.
sourceraw docstring

inject-return!cljs

(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.
sourceraw docstring

inject-return!!cljs

(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.
sourceraw docstring

inject-state-change!cljs

(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.
sourceraw docstring

inject-state-change!!cljs

(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.
sourceraw docstring

invoke-callback!cljs

(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.
sourceraw docstring

invoke-callback!!cljs

(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.
sourceraw docstring

mount!cljs

(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.
sourceraw docstring

mount!!cljs

(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.
sourceraw docstring

push!cljs

(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.
sourceraw docstring

push!!cljs

(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.
sourceraw docstring

send-message!cljs

(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.
sourceraw docstring

send-message!!cljs

(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.
sourceraw docstring

unmount!cljs

(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.
sourceraw docstring

unmount!!cljs

(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.
sourceraw docstring

update!cljs

(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.
sourceraw docstring

update!!cljs

(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.
sourceraw docstring

with-env-returncljs

(with-env-return env f)
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close