test_that("pwa compat deps", {
tag <- add_pwacompat_deps(shiny::div())
deps <- htmltools::findDependencies(tag)
expect_type(deps, "list")
expect_length(deps, 1)
dep <- deps[[1]]
expect_identical(dep$name, "pwacompat")
})
test_that("pwa deps", {
tag <- add_pwa_deps(shiny::div())
deps <- htmltools::findDependencies(tag)
expect_type(deps, "list")
expect_length(deps, 1)
dep <- deps[[1]]
expect_identical(dep$name, "pwa-utils")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.