fix(jenkins): reset baseUrl in protractor conf

Commit 22b817ec11 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 #9783
This commit is contained in:
Jeff Cross
2014-10-28 12:06:11 -07:00
parent df3d739654
commit b4db713cde

View File

@@ -13,7 +13,7 @@ exports.config = {
'browserName': 'chrome'
},
baseUrl: 'http://localhost:8000/build/docs/',
baseUrl: 'http://localhost:8000/',
framework: 'jasmine',