kaocha

Official support channel: https://clojureverse.org/c/projects/kaocha
plexus 2020-04-25T09:12:49.167900Z

@jmayaalv what does it look like with the default reporter? that doesn't look like there are any failing tests.

plexus 2020-04-25T09:16:58.168Z

sorry Daniel, that script is vestigial. We used to have a different kind of feature tests before we used cucumber, that's what this script was for. Now you just use kaocha, e.g. bin/kaocha --focus :plugins.version-filter

2020-04-25T11:16:06.169200Z

@plexus this is the output with the default reporter

Warning: implicit hook found: lein-cprop.plugin/hooks
Hooks are deprecated and will be removed in a future version.
[(....................................)(.)(.........)(....................)(..)(....................)(.......................................)(FFFFF)(........)(.)(...................................)(..............F)(...........................F)(....)(.........................)(.)(..)(...)(........)(...F......F....F....F...F...FFFFF...FFFFFFFFF......F...F......FFF...F...F...................................................................)(.)(............................)
the progress reporter goes to red when printing (that’s why i see there are errors) this is is my config
#kaocha/v1
{:tests
 [{:id        :edge
   :skip-meta [:slow :unstable]}
]
 :kaocha/reporter                    [kaocha.report.progress/progress]
 :kaocha/capture-output?             false
 :kaocha/color?                      true
 :kaocha/fail-fast?                  false
 :kaocha.plugin.profiling/count      3
 :kaocha.plugin.profiling/profiling? true
 :kaocha.plugin.randomize/randomize? true}

plexus 2020-04-25T11:19:39.169400Z

use kaocha.report.progress/report

2020-04-25T11:25:10.169700Z

yep, that was it 🙂 . sorry and thanks a lot for the help