suppress_logs: Suppress logger logs

View source: R/supress_logs.R

suppress_logsR 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)
})


teal.logger documentation built on May 29, 2024, 9:14 a.m.