Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Support Nextcloud 32 [#901](https://github.com/nextcloud/integration_openproject/pull/901)

### Fixed
- Fix: UI colors too Light in Nextcloud 32 [#911](https://github.com/nextcloud/integration_openproject/pull/911)

## 2.10.0 - 2025-09-26

### ⚠️ Upgrade Notice
Expand Down
6 changes: 2 additions & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

const path = require('path')
const rootDir = path.resolve(__dirname, '../../../')

module.exports = {
testMatch: ['**/tests/**/*.spec.{js,ts}'],
moduleNameMapper: {
'\\.(scss)$': '<rootDir>/tests/jest/stubs/empty.js',
'@nextcloud/l10n/gettext': require.resolve('@nextcloud/l10n/gettext'),
'@nextcloud/l10n/gettext': '<rootDir>/tests/jest/__mocks__/@nextcloud/l10n.js',
'@nextcloud/router': '<rootDir>/tests/jest/__mocks__/@nextcloud/router.js',
},
transform: {
// process *.vue files with vue-jest
Expand Down
Loading