TangibleDream
TangibleDream

Reputation: 611

Does sublime have a color cucumber log file?

I am getting to the point where ANSICON does not help me when errors occur.

If I run an a complete smoke test and an error occurs on one of the first few features, it'll be out of ansicon's buffer, forcing me to rerun that specific feature.

My solution was to post it to a logfile...

cucumber --tags @smoke > cukelog.log

The only sadness here is that I lose color :(

This leads me to believe that sublime has an add on for color cucumber log files (not .feature)

Is there such an animal?

Upvotes: 0

Views: 402

Answers (1)

Andrei Botalov
Andrei Botalov

Reputation: 21096

You can use Cucumber formatters to format Cucumber output.

I think flags --format html --out output.html will fit your needs. You can look at other formatters by typing cucumber --help

Upvotes: 1

Related Questions