Fix user story detail tests

stable
David Barragán Merino 2015-07-31 11:43:51 +02:00 committed by Juanfran
parent 6b9a40d2e8
commit 6f018ed691
1 changed files with 5 additions and 5 deletions

View File

@ -9,11 +9,11 @@ var expect = chai.expect;
describe('User story detail', function(){ describe('User story detail', function(){
let backlogUrl = ""; let backlogUrl = "";
before(async function(){ before(async function(){
utils.common.goHome(); await utils.common.goHome();
utils.common.goToFirstProject(); await utils.common.goToFirstProject();
utils.common.goToBacklog(); await utils.common.goToBacklog();
backlogUrl = await browser.getCurrentUrl(); backlogUrl = await browser.getCurrentUrl();
utils.common.goToFirstUserStory(); await utils.common.goToFirstUserStory();
}); });
it('screenshot', async function() { it('screenshot', async function() {