我在 OSX 10.8.3 上使用 behat2.4.5,behat 不会自动检测 ANSI / Color 输出兼容性。
我被迫将声明运行为
bin/behat --ansi
有没有办法让它成为 behat.yml 中的默认值,或者其他方法?
好的,我错过的明显解决方案是使用别名:
alias behat="bin/behat --ansi"
但我想知道是否有可用的跨平台选项。
FormatProcessor.php 中的更改:
// --[no-]ansi
->addOption('--ansi', null, InputOption::VALUE_NONE,
至
// --[no-]ansi
->addOption('--ansi', null, InputOption::VALUE_OPTIONAL,