fix taskboard e2e

stable
Juanfran 2016-01-25 13:12:52 +01:00
parent 87fa24c521
commit 73eacf6a44
2 changed files with 12 additions and 11 deletions

View File

@ -84,7 +84,7 @@ helper.getCreateTask = function() {
return el.$('.blocked'); return el.$('.blocked');
}, },
blockedNote: function() { blockedNote: function() {
return el.$('textarea[name="blocked_note"]'); return el.$('input[name="blocked_note"]');
}, },
submit: function() { submit: function() {
el.$('button[type="submit"]').click(); el.$('button[type="submit"]').click();

View File

@ -252,7 +252,7 @@ describe('taskboard', function() {
}); });
}); });
describe ('inline', function() {
it('Change task assigned to', async function(){ it('Change task assigned to', async function(){
await taskboardHelper.watchersLinks().first().click(); await taskboardHelper.watchersLinks().first().click();
@ -270,6 +270,7 @@ describe('taskboard', function() {
expect(assgnedToName).to.be.equal(usAssignedTo); expect(assgnedToName).to.be.equal(usAssignedTo);
}); });
});
describe('Graph', function(){ describe('Graph', function(){
let graph = $('.graphics-container'); let graph = $('.graphics-container');