Cucumber + parallel_tests. HTML results?

后端 未结 2 901
隐瞒了意图╮
隐瞒了意图╮ 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 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.

提交回复
热议问题