mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
- ✨ **Feature**: Added InputControlDirective for better input handling - 🎨 **Style**: Updated button and text-field styles for loading states - 🛠️ **Refactor**: Improved button component structure and disabled state handling - 📚 **Docs**: Updated code style guidelines with new control flow syntax
22 lines
684 B
TypeScript
22 lines
684 B
TypeScript
export default {
|
|
displayName: 'oms-data-access',
|
|
preset: '../../../jest.preset.js',
|
|
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
|
|
coverageDirectory: '../../../coverage/libs/oms/data-access',
|
|
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',
|
|
],
|
|
};
|