Friday, December 22, 2023
1 change · 17.0
Code cleanup and technical improvements
This change reorganizes internal test support code for the web module by moving kanban testing helpers into a shared helper file. It does not change product behavior, but makes future JavaScript tests easier to build and maintain.
Original PR description
Before this commit, the helpers for the kanban view are only used in the kanban tests in web module and those helper functions are not exported and so it is impossible to use it outside that file. This commit moves the helper functions for the kanban view in a new file called "helpers.js" in the same directory containing the tests for the kanban views and export all the helper functions to be able to use it anywhere we need to use those helpers in JS tests.