Feature
Running testcafe on the command line outputs a hipster version of an ASCII spinning wheel which under certain circumstances litters e.g. Jenkins output logs with megabytes of useless lines.
Running testcafe on the command line with a certain parameter no longer outputs a hipster version of an ASCII spinning wheel which under certain circumstances litters e.g. Jenkins output logs with megabytes of useless lines.
Hello @manuelkiessling, currently we use is-ci package to disable CLI animation on CI systems like Jenkins. Maybe it's a bug in that package. BTW, you can declare/export the CI environment variable, and the hipster wheel must go away. 馃槈 Examples:
for bash:
CI=1 testcafe ...
cmd
set CI=1
testcafe ...
powershell
$env:CI=1; node .\bin\testcafe.js chrome .\examples\basic\test.js
This thread has been automatically locked since it is closed and there has not been any recent activity. Please open a new issue for related bugs or feature requests. We recommend you ask TestCafe API, usage and configuration inquiries on StackOverflow.
Most helpful comment
Hello @manuelkiessling, currently we use is-ci package to disable CLI animation on CI systems like Jenkins. Maybe it's a bug in that package. BTW, you can declare/export the
CIenvironment variable, and the hipster wheel must go away. 馃槈 Examples:for bash:
cmd
powershell