Browse Source

Bugfix/time zone handling in api test suite for deterministic execution in UTC (#7149)

* Fix time zone handling for deterministic execution in UTC

* Update changelog
pull/7151/head^2
Thomas Kaul 16 hours ago
committed by GitHub
parent
commit
3c822928c2
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 4
      apps/api/jest.config.ts

4
CHANGELOG.md

@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added support for filtering in the public access for portfolio sharing (experimental)
- Set up the language localization for Japanese (`ja`)
### Fixed
- Fixed the time zone handling in the `api` test suite for deterministic execution in `UTC`
## 3.17.0 - 2026-06-26
### Added

4
apps/api/jest.config.ts

@ -1,4 +1,8 @@
/* eslint-disable */
// Run tests in UTC for deterministic date-based calculations
process.env.TZ = 'UTC';
export default {
displayName: 'api',

Loading…
Cancel
Save