crew_test("relay wait() timeout condition", {
x <- crew_relay()
cv <- nanonext::cv()
x$set_from(cv)
x$start()
throttle <- crew_throttle(
seconds_max = 2,
seconds_min = 2,
seconds_start = 2,
base = 1.1
)
time <- system.time(out <- x$wait(throttle = throttle))
expect_false(out)
expect_gt(time["elapsed"], 1)
expect_equal(nanonext::cv_value(x$condition), 0L)
expect_equal(nanonext::cv_value(cv), 0L)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.