Nothing
test_that("default_values", {
param_set = ps(x = p_int(default = 3), y = p_dbl(default = 2.5))
values = default_values(param_set)
expect_names(names(values), permutation.of = c("x", "y"))
expect_equal(values$x, 3)
expect_equal(values$y, 2.5)
})
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.