Skip to content

Commit

Permalink
fix(protractor): updated protractor demo.e2e.ts files to use baseUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
shahabganji authored and 3cp committed Sep 3, 2019
1 parent 81cb28a commit 7aaa38e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -14,7 +14,7 @@ describe('aurelia skeleton app', function() {
poSkeleton = new PageObjectSkeleton(); poSkeleton = new PageObjectSkeleton();
poWelcome = new PageObjectWelcome(); poWelcome = new PageObjectWelcome();


await browser.loadAndWaitForAureliaPage(`http://${config.baseUrl}`); await browser.loadAndWaitForAureliaPage(`${config.baseUrl}`);
}); });


it('should load the page and display the initial page title', async () => { it('should load the page and display the initial page title', async () => {
Expand Down
Expand Up @@ -13,7 +13,7 @@ describe('aurelia skeleton app', function() {
poSkeleton = new PageObjectSkeleton(); poSkeleton = new PageObjectSkeleton();
poWelcome = new PageObjectWelcome(); poWelcome = new PageObjectWelcome();


await browser.loadAndWaitForAureliaPage(`http://${config.baseUrl}`); await browser.loadAndWaitForAureliaPage(`${config.baseUrl}`);
}); });


it('should load the page and display the initial page title', async () => { it('should load the page and display the initial page title', async () => {
Expand Down

0 comments on commit 7aaa38e

Please sign in to comment.