-
Notifications
You must be signed in to change notification settings - Fork 0
Result Formatter
Pavel Garchenko edited this page Oct 30, 2017
·
4 revisions
atm_result_formmater
provides ability to generate test results json which later can be posted to Adaptavist Test Management.
Add configuration block to spec_helper
ATMFormatter.configure do |c|
c.base_url = 'https://localhost'
c.auth_type = :basic
c.project_id = 'CC'
c.test_run_id = 'CC-R180'
c.environment = "".upcase
c.username = 'Test'
c.password = 'Test'
c.result_formatter_options = { run_only_found_tests: false }
end
Add this lines to the RSpec.configure block
RSpec.configure do |config|
config.include ATMFormatter::Adaptor # NOTE: this required to be added for steps to work properly
config.formatter = 'ATMResultFormatter'
end
🎉
- [Contribution guide]