Nothing
# Wrapper for test_that that disables/hides the progress bar.
# This makes the output of devtools::test() more readable
# Cleans up: restores the previous progress at the end.
test_that_no_progress <- function(test, code) {
old_progress <- getOption("pROCProgress")
options(pROCProgress = list(name = "none"))
tryCatch({
test_that(test, code)
},
finally = function() {
options(pROCProgress = old_progress)
}
)
}
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.