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

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -