Nothing
pkg_dir <- test_path("pkgs/expkg")
if (!dir.exists(file.path(pkg_dir, "tests", "testthat"))) {
skip("Test packages folders have been ignored")
}
skip_on_cran()
test_that("functions shouldn't return a non-shiny app", {
expect_error(
AppDriver$new(
app_dir = function() {
"not a shiny app"
}
),
"The Shiny app function has already terminated"
)
})
# Use test_app to relay the tests to the top level testthat runner
# It is not testing an _app_ per se, but this allows us to
# test the package loading behavior within the shinytest2 test suite easily
test_app(test_path("pkgs/expkg"), load_package = "source", quiet = TRUE)
if (!requireNamespace("golem", quietly = TRUE)) {
testthat::test_that(paste0("pkgs - golem"), {
skip("golem not installed")
})
} else {
test_app(
test_path("pkgs/golem"),
load_package = "source",
quiet = TRUE
)
}
if (
!(requireNamespace("rhino", quietly = TRUE) &&
requireNamespace("box", quietly = TRUE))
) {
testthat::test_that(paste0("pkgs - rhino"), {
skip("rhino not installed")
})
} else {
test_app(
test_path("pkgs/rhino"),
load_package = "none",
quiet = 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.