Tuesday, June 18, 2024
2 changes · saas-17.2
Resolved issues and error corrections
The Trial Balance report in Mexican closing reports now correctly applies the Month 13 filter when selected. This ensures users can view the expected period-specific balances without the filter appearing unresponsive.
Original PR description
Clicking on the Trial Balance'filter to activate 'Month 13' does nothing. The reason is that the js expects undefined and not null. task-3983699
This change fixes an issue where some mail-related automated tests could get stuck indefinitely after an error. It improves the reliability of the testing process, helping developers detect issues faster and maintain product quality.
Original PR description
Before this PR, a test could hang indefinitely if an error occured. The flow is the following: - error occurs - the contains helper reset his internal `hasUsedContainsPositively` following the `after` callback - an error occurs if the pending contains is a negative assertion (count=0) - hoot never keeps going The `hasUsedContainsPositively` variable should not be cleaned by the contains instances. It should only be cleaned once when the test is done.