Nothing
test_that("Settings are handled correctly", {
# Don't run these tests on the CRAN build servers
skip_on_cran()
temp_dir <- tempdir()
# Set up necessary files (internal function)
unlink(paste0(temp_dir,"/files"), recursive = TRUE)
shinyMixR:::setup_shinymixr_test(dir = paste0(temp_dir, "/files"),
overwrite = TRUE,
record = FALSE,
incres = FALSE)
# if shinyMixR/temp directory does not exist yet, create it
testServer(module_settings_server,
expr = {
# Set inputs
session$setInputs(plott = "user")
session$setInputs(fontedt = 8)
# Can only checked if these are picked up
expect_true(session$input$plott=="user")
expect_true(session$input$fontedt==8)
})
#unlink(paste0(temp_dir, "/files"), recursive = TRUE)
rml <- list.files(temp_dir, recursive = TRUE, include.dirs = TRUE, full.names = TRUE)
unlink(rml, recursive = TRUE)
})
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.