mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
/* eslint comma-dangle: 0 */
|
|
|
|
module.exports = {
|
|
name: 'verdaccio-unit-jest',
|
|
verbose: true,
|
|
collectCoverage: true,
|
|
reporters: ['default', ['jest-junit', { outputDirectory: 'reports' }]],
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
|
testURL: 'http://localhost',
|
|
testRegex: '(test/unit.*\\.spec)\\.ts',
|
|
// Some unit tests rely on data folders that look like packages. This confuses jest-hast-map
|
|
// when it tries to scan for package.json files.
|
|
transform: {
|
|
'^.+\\.(js|jsx|ts|tsx)$': 'babel-jest',
|
|
},
|
|
modulePathIgnorePatterns: [
|
|
'<rootDir>/test/unit/partials/mock-store/.*/package.json',
|
|
'<rootDir>/test/functional/store/.*/package.json',
|
|
'<rootDir>/test/unit/partials/store/.*/package.json',
|
|
'<rootDir>/coverage',
|
|
'<rootDir>/docs',
|
|
'<rootDir>/debug',
|
|
'<rootDir>/scripts',
|
|
'<rootDir>/.circleci',
|
|
'<rootDir>/tools',
|
|
'<rootDir>/wiki',
|
|
'<rootDir>/systemd',
|
|
'<rootDir>/flow-typed',
|
|
'<rootDir>test/unit/partials/mock-store/.*/package.json',
|
|
'<rootDir>/test/functional/store/.*/package.json',
|
|
'<rootDir>/build',
|
|
'<rootDir>/.vscode/',
|
|
],
|
|
testPathIgnorePatterns: ['__snapshots__', '<rootDir>/build'],
|
|
coveragePathIgnorePatterns: [
|
|
'node_modules',
|
|
'fixtures',
|
|
'<rootDir>/src/api/debug',
|
|
'<rootDir>/test',
|
|
],
|
|
};
|