This function runs a test_that
block quietly, suppressing messages and
output from any verbose functions.
Examples
# Run a test quietly
test_quietly_that("quiet test example", {
testthat::expect_equal(1 + 1, 2)
})
#> Warning: The `code` argument to `test_that()` must be a braced expression to get accurate file-line information for failures.
#> Test passed