| suppress_logs {teal.logger} | R Documentation |
Suppress logger logs
Description
This function suppresses logger when running tests via testthat.
To suppress logs for a single test, add this function
call within the testthat::test_that expression. To suppress logs for an entire
test file, call this function at the start of the file.
Usage
suppress_logs()
Value
NULL invisible
Examples
testthat::test_that("An example test", {
suppress_logs()
testthat::expect_true(TRUE)
})
[Package teal.logger version 0.2.0 Index]