Nothing
context("all")
test_that("it works", {
setup({
jetpack::init()
expectFile("DESCRIPTION")
expectFile("renv.lock")
expectFile(".Rprofile")
jetpack::add("DBI")
expectFileContains("DESCRIPTION", "DBI")
expectFileContains("renv.lock", "DBI")
check <- jetpack::check()
expect(check, "Check should return true")
jetpack::install()
jetpack::install(deployment=TRUE)
jetpack::update("DBI")
jetpack::update()
jetpack::outdated()
jetpack::remove("DBI")
refuteFileContains("DESCRIPTION", "DBI")
refuteFileContains("renv.lock", "DBI")
})
})
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.