Nothing
library(testthat)
#
# Function to check reactData object (this avoids having repeated code)
validInput <- function(obj, id, jsAccessor) {
expect_equal(obj$type, "input")
expect_equal(obj$id, id)
expect_equal(obj$jsAccessor, jsAccessor)
expect_s3_class(obj, "ReactData")
}
test_that("setInput :: returns correct information without jsAccessor", {
result <- triggerEvent("some_id")
expect_equal(result$type, "event")
expect_equal(result$id, "some_id")
expect_s3_class(result, "ReactData")
})
test_that("setInput :: succeeds with valid integer jsAccessor", {
result <- setInput("some_id", 1)
validInput(result, "some_id", "[1]")
result <- setInput("some_id2", 0)
validInput(result, "some_id2", "[0]")
})
test_that("setInput :: fails with invalid index jsAccessor (a float)", {
expect_error(setInput("some_id", 2.2), "Arguments not supported")
expect_error(setInput("some_id", 1.1), "Arguments not supported")
})
test_that("setInput :: fails with invalid integer jsAccessor", {
regex <- "Arguments not supported :: index '.*' is invalid"
expect_error(setInput("some_id", -20), regex)
expect_error(setInput("some_id", -1), regex)
})
test_that("setInput :: succeeds with string as jsAccessor", {
result <- setInput("some_id_str", "[0].target.checked")
validInput(result, "some_id_str", "[0].target.checked")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.