From b4db713cde8539d118c9bbae91c4ded1979b0ebf Mon Sep 17 00:00:00 2001 From: Jeff Cross Date: Tue, 28 Oct 2014 12:06:11 -0700 Subject: [PATCH] fix(jenkins): reset baseUrl in protractor conf Commit 22b817ec11f7ab1a81342a4b60acd644a3f2a8c3 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 --- protractor-jenkins-conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protractor-jenkins-conf.js b/protractor-jenkins-conf.js index d1668e210a74..f71bfdde89e8 100644 --- a/protractor-jenkins-conf.js +++ b/protractor-jenkins-conf.js @@ -13,7 +13,7 @@ exports.config = { 'browserName': 'chrome' }, - baseUrl: 'http://localhost:8000/build/docs/', + baseUrl: 'http://localhost:8000/', framework: 'jasmine',