Bug 1491269 - Follow-up: fix testTaskView.js failure by remembering the number of tasks before clicking delete; r=darktrojan

This commit is contained in:
Magnus Melin 2018-12-06 14:04:59 +02:00
Родитель 16003487aa
Коммит e5518933ba
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -155,8 +155,8 @@ function testTaskView() {
controller.assertJSProperty(toolTipStatus, "textContent", "Completed");
// Delete task and verify.
countBefore = taskTreeNode.mTaskArray.length;
controller.click(eid("calendar-delete-task-button"));
countBefore = countAfter;
controller.waitFor(() => {
countAfter = taskTreeNode.mTaskArray.length;
return countAfter == (countBefore - 1);