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 April 3, 2025, 9:27 p.m.