mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-22 12:29:21 +01:00
* Add testing library * Add slot for lucide-vue * update lockfile * update lockfile * Add Test workflows for packages changes * Add slots to vue 3
16 lines
425 B
JavaScript
16 lines
425 B
JavaScript
module.exports = {
|
|
verbose: true,
|
|
roots: ['<rootDir>/src/', '<rootDir>/tests/'],
|
|
moduleFileExtensions: ['js'],
|
|
transform: {
|
|
'^.+\\.js$': 'babel-jest',
|
|
'^.+\\.vue$': 'vue-jest',
|
|
},
|
|
transformIgnorePatterns: [`/node_modules`],
|
|
snapshotSerializers: ['jest-serializer-vue'],
|
|
moduleNameMapper: {
|
|
'^@/(.*)$': '<rootDir>/src/$1',
|
|
},
|
|
setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect'],
|
|
};
|