Method: LearnTest::Strategies::Protractor#results
- Defined in:
- lib/learn_test/strategies/protractor.rb
#results ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/learn_test/strategies/protractor.rb', line 66 def results @results ||= { username: username, github_user_id: user_id, learn_oauth_token: learn_oauth_token, repo_name: runner.repo, build: { test_suite: [{ framework: 'protractor', formatted_output: output, duration: duration }] }, examples: passing_count + failure_count, passing_count: passing_count, failure_count: failure_count } end |