[minor] added timeout while setting values

This commit is contained in:
Rushabh Mehta 2017-07-18 14:38:51 +05:30
parent 91e705e37a
commit ac55a8626e

View file

@ -36,6 +36,7 @@ frappe.tests = {
}
};
tasks.push(task);
tasks.push(() => frappe.timeout(0.2));
}
});
@ -64,6 +65,7 @@ frappe.tests = {
return frappe.model.set_value(grid_row.doc.doctype,
grid_row.doc.name, child_key, child_value[child_key]);
});
grid_value_tasks.push(() => frappe.timeout(0.2));
}
});