mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
feat: enhance return search component to handle search callbacks and update query parameters fix: update return search result component template to use new search method and improve loading states refactor: streamline return search result component logic and improve state management feat: implement scroll position restoration in return search feature feat: introduce filter service enhancements for query settings and synchronization with URL parameters chore: create utils for scroll position management and viewport detection fix: update filter service to use new input and query settings types chore: add tests and configurations for new utils library ref: #5033
22 lines
696 B
TypeScript
22 lines
696 B
TypeScript
export default {
|
|
displayName: 'utils-scroll-position',
|
|
preset: '../../../jest.preset.js',
|
|
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
|
|
coverageDirectory: '../../../coverage/libs/utils/scroll-position',
|
|
transform: {
|
|
'^.+\\.(ts|mjs|js|html)$': [
|
|
'jest-preset-angular',
|
|
{
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
stringifyContentPathRegex: '\\.(html|svg)$',
|
|
},
|
|
],
|
|
},
|
|
transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
|
|
snapshotSerializers: [
|
|
'jest-preset-angular/build/serializers/no-ng-attributes',
|
|
'jest-preset-angular/build/serializers/ng-snapshot',
|
|
'jest-preset-angular/build/serializers/html-comment',
|
|
],
|
|
};
|