Globally set verbose level of $
to quiet
#323
Answered
by
OlaoluwaM
OlaoluwaM
asked this question in
Help needed
-
How can I globally set the verbose level of the |
Beta Was this translation helpful? Give feedback.
Answered by
OlaoluwaM
Mar 1, 2022
Replies: 1 comment
-
To do this, you can have a tests setup file via the As for regular source code, the principle remains. Simple add |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
OlaoluwaM
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To do this, you can have a tests setup file via the
setupTestsAfterEnv
. You can set$.verbose = false
in that file because it is invoked before all other test files.As for regular source code, the principle remains. Simple add
$.verbose = false
to a file executed before any other file, like the main file of your program.