Nothing
      nest_logo_url <- "https://raw.githubusercontent.com/insightsengineering/hex-stickers/main/PNG/nest.png"
app_driver_tm_file_viewer <- function() {
  init_teal_app_driver(
    data = simple_teal_data(),
    modules = tm_file_viewer(
      label = "File Viewer Module",
      input_path = list(
        folder = system.file("sample_files", package = "teal.modules.general"),
        png = system.file("sample_files/sample_file.png", package = "teal.modules.general"),
        txt = system.file("sample_files/sample_file.txt", package = "teal.modules.general"),
        url = nest_logo_url
      )
    ),
    timeout = 3000
  )
}
test_that("e2e - tm_file_viewer: Initializes without errors and shows files tree specified in input_path argument", {
  testthat::skip("chromium")
  skip_if_too_deep(5)
  app_driver <- app_driver_tm_file_viewer()
  app_driver$expect_no_shiny_error()
  # check valid path as no file is selected
  app_driver$expect_validation_error()
  # encoding are visible
  testthat::expect_true(app_driver$is_visible(selector = app_driver$active_module_element("tree")))
  list_files <- app_driver$get_html_rvest(selector = app_driver$active_module_element("tree")) %>%
    rvest::html_nodes("a") %>%
    rvest::html_text()
  testthat::expect_setequal(
    list_files,
    c("folder", "png", "txt", "url")
  )
  testthat::expect_equal(
    app_driver$get_text("#teal-teal_modules-active_tab .active"),
    "File Viewer Module"
  )
  app_driver$stop()
})
test_that("e2e - tm_file_viewer: Shows selected image file", {
  testthat::skip("chromium")
  skip_if_too_deep(5)
  app_driver <- app_driver_tm_file_viewer()
  app_driver$click(selector = "[id= '4_anchor']")
  testthat::expect_true(app_driver$is_visible(sprintf("%s img", app_driver$active_module_element("output"))))
  img_src <- app_driver$get_html_rvest(app_driver$active_module_element("output")) %>%
    rvest::html_element("img") %>%
    rvest::html_attr("src")
  testthat::expect_match(img_src, "png$")
  app_driver$stop()
})
test_that("e2e - tm_file_viewer: Shows selected text file", {
  testthat::skip("chromium")
  skip_if_too_deep(5)
  app_driver <- app_driver_tm_file_viewer()
  app_driver$click(selector = "[id= '5_anchor']")
  testthat::expect_true(app_driver$is_visible(sprintf("%s pre", app_driver$active_module_element("output"))))
  pre_text <- app_driver$get_html_rvest(app_driver$active_module_element("output")) %>%
    rvest::html_element("pre") %>%
    rvest::html_text()
  testthat::expect_true(!is.na(pre_text))
  testthat::expect_true(length(pre_text) > 0)
  testthat::expect_match(
    attr(app_driver$get_active_module_input("tree")$txt, "ancestry"),
    "txt$"
  )
  app_driver$stop()
})
test_that("e2e - tm_file_viewer: Shows selected url", {
  testthat::skip("chromium")
  skip_if_too_deep(5)
  app_driver <- app_driver_tm_file_viewer()
  app_driver$click(selector = "[id= '6_anchor']")
  testthat::expect_true(app_driver$is_visible(sprintf("%s img", app_driver$active_module_element("output"))))
  testthat::expect_equal(
    attr(app_driver$get_active_module_input("tree")$url, "ancestry"),
    nest_logo_url
  )
  app_driver$stop()
})
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.