0

I have written "end to end" automatic tests for my angular website using protractor, I do know how to run the protractor test from buildbot, but don't know how to report back the results of the test to build bot.

Any ideas?

Artjom B.
  • 61,146
  • 24
  • 125
  • 222
chulian
  • 3,767
  • 4
  • 21
  • 23

1 Answers1

1

When you run protractor conf.js, the exit status should be nonzero if one or more tests fail, and Buildbot will automatically interpret that as a failure. In other words, the obvious approach of ShellCommand(command=['protractor', 'conf.js']) should work. If you're doing something else, please give some additional information about what you've tried and what happened.

djmitche
  • 409
  • 2
  • 10