Reputation: 1551
We have installed behat
and while executing "bin/behat
" it is executing test feature. But is there any method or option to display results in a browser by accessing URL?
Upvotes: 1
Views: 54
Reputation: 1039
You can save the output to a file in xml format, you can then open it with any browser: "--no-colors -f junit -o some/folder" There is also BehatHtmlFormatterPlugin "for generating HTML reports from your test results"
Upvotes: 1