r - How do you turn off colored text in testthat? -
i use package colorout color output in r (i don't use rstudio). when running tests in testthat
prints out in color interfering colorout package printing lot of color codes.
here example of output:
r> library(colorout) r> devtools::test() loading mypackage testing mypackage 1;32m.0m1;32m.0m1;32m.0m
how can turn off coloring in testthat
?
found there option this:
options(testthat.use_colours = false)
Comments
Post a Comment