drone / proposal

Drone Project Design Documents
13 stars 4 forks source link

Allow downloading of coloured logs as plain text #36

Open WillGibson opened 1 year ago

WillGibson commented 1 year ago

When we download logs which include colours, we get stuff like this...

Scenario: Something needs to happen
   [32mGiven I have created test data for a [32m [1mthing [0m [0m [32m [90m # features/step_definitions/general_scenario_steps.rb:141 [0m [0m
   [32mWhen I do a thing [32m [1m and continue [0m [0m [32m [90m # features/step_definitions/thing_flow.rb:20 [0m [0m
   [32mThen the happy stuff happens [90m # features/step_definitions/thing_flow.rb:52 [0m [0m

It would be nice if that dowloaded as plain text like this...

Scenario: Something needs to happen
   Given I have created test data for a thing # features/step_definitions/general_scenario_steps.rb:141
   When I do a thing and continue # features/step_definitions/thing_flow.rb:20
   Then the happy stuff happens # features/step_definitions/thing_flow.rb:52