Nothing
skip_on_cran()
skip_if_not_installed("withr")
withr::with_options(
list(easystats_errors = TRUE),
test_that(".safe works with options", {
expect_error(performance:::.safe(mean(fd)), regex = "object 'fd' not found")
expect_identical(performance:::.safe(mean(fd), 1L), 1L)
expect_identical(performance:::.safe(mean(c(1, 2, 3))), 2)
})
)
test_that(".safe works", {
expect_null(performance:::.safe(mean(fd)))
expect_identical(performance:::.safe(mean(c(1, 2, 3))), 2)
})
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.