Nothing
test_that("event_register() registers an event", {
p <- plotly_build(plot_ly(x = 1))
expect_false("plotly_selecting" %in% p$x$shinyEvents)
p <- event_register(p, "plotly_selecting")
expect_true("plotly_selecting" %in% p$x$shinyEvents)
})
test_that("event_unregister() de-registers an event", {
p <- plotly_build(plot_ly(x = 1))
expect_true("plotly_selected" %in% p$x$shinyEvents)
p <- event_unregister(p, "plotly_selected")
expect_false("plotly_selected" %in% p$x$shinyEvents)
})
test_that("event_data shiny app works", {
skip_shinytest_tests()
appdir <- system.file(package = "plotly", "examples", "shiny", "event_data")
shinytest::expect_pass(shinytest::testApp(appdir))
})
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.