Cucumber + parallel_tests. HTML results?

后端 未结 2 899
隐瞒了意图╮
隐瞒了意图╮ 2021-01-12 11:05

I currently try to implement parallel_tests for our Cucumber + Watir-WebDriver acceptance tests. As far it goes great.

However, we got used to nice HTML reports from

相关标签:
2条回答
  • 2021-01-12 11:51

    I don't think you have this out of the box. What we ended up doing was writing a new formatter.

    https://github.com/cucumber/cucumber/wiki/Custom-Formatters

    0 讨论(0)
  • 2021-01-12 12:09

    Put

    default: --format html --out report<%= ENV['TEST_ENV_NUMBER'] %>.html
    

    in ./config/cucumber.yml. Whey you run the tests, you will find report.html, report2.html (...) files in project root.

    0 讨论(0)
提交回复
热议问题