dutchiexl / BehatHtmlFormatterPlugin

This is a behat plugin to generate HTML reports
MIT License
112 stars 116 forks source link

console output disappears #56

Closed tanguybernard closed 8 years ago

tanguybernard commented 8 years ago

Hello, When I'm using some basic configuration:

default:

extensions:
     emuse\BehatHTMLFormatter\BehatHTMLFormatterExtension:
          name: html
          renderer: Twig,Behat2
          file_name: Index
          print_args: true
          print_outp: true
          loop_break: true

formatters:
    html:
      output_path: %paths.base%/build/html/behat

The console output disappears, but html generation works fine!

Did I miss something ?

karina-may commented 8 years ago

Add pretty: under formatters, then it still prints the pretty output to console:

default:
  formatters:
    pretty:
    html:
      output_path: %paths.base%/build/behat
tanguybernard commented 8 years ago

Thank you @KarinaBecker :)