Skip to content

Commit

Permalink
Fix again e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
djuretic committed Jan 1, 2014
1 parent c572a19 commit 69c4977
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ describe('front page', function() {
element(by.model('registerVals.confirmPassword')).sendKeys('pass');
var register = element(by.css("#register-tab input[value='Register']"));
register.click();
browser.sleep(2000);
browser.sleep(1000);
browser.getCurrentUrl().then(function(url){
expect(url).toMatch(/#\/tasks$/);
expect(url).not.toMatch(/static\/front/);
});
});
});

0 comments on commit 69c4977

Please sign in to comment.