Friday, June 7, 2024
1 change · master
Code cleanup and technical improvements
This update cleans up automated test tour definitions after a platform change made simple presence checks the default behavior. It does not change business features, but helps keep test maintenance simpler and reduces unnecessary test code across several apps.
Original PR description
As of commit https://github.com/odoo/odoo/pull/167743, the default action in tours is now NOTHING. That is to say that if we only put a "trigger", the compiler only checks that the element is in the DOM. To perform a "click" action on the trigger, you must explicitly write run: "click". In this commit, we remove all isCheck: true and empty runs because they are no longer useful... since it is the default action. https://github.com/odoo/odoo/pull/168474