Skip to content

Commit

Permalink
fix(jenkins): reset baseUrl in protractor conf
Browse files Browse the repository at this point in the history
Commit 22b817e changed the url
used by protractor in all docs tests to prepend "build/docs", which
was already set to the `baseUrl` in `protractor-jenkins.conf`. This
commit just changes the protractor config's `baseUrl` to adapt
to the changes in the spec files.

Closes angular#9783
  • Loading branch information
jeffbcross committed Oct 28, 2014
1 parent df3d739 commit b4db713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protractor-jenkins-conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exports.config = {
'browserName': 'chrome'
},

baseUrl: 'http://localhost:8000/build/docs/',
baseUrl: 'http://localhost:8000/',

framework: 'jasmine',

Expand Down

0 comments on commit b4db713

Please sign in to comment.