verdaccio/jest.config.js

45 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-11-01 17:47:20 +01:00
/* eslint comma-dangle: 0 */
module.exports = {
name: 'verdaccio-unit-jest',
2018-02-19 19:29:14 +01:00
verbose: true,
collectCoverage: true,
reporters: ["default", ["jest-junit", { outputDirectory: 'reports' }]],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
2018-06-30 12:44:03 +02:00
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'
},
2018-02-19 19:29:14 +01:00
modulePathIgnorePatterns: [
2018-06-27 08:52:52 +02:00
'<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/',
2017-11-28 17:05:58 +01:00
],
2018-02-19 19:29:14 +01:00
testPathIgnorePatterns: [
2018-06-27 08:52:52 +02:00
'__snapshots__',
'<rootDir>/build',
2018-06-27 08:52:52 +02:00
],
coveragePathIgnorePatterns: [
'node_modules',
'fixtures',
'<rootDir>/src/api/debug',
'<rootDir>/test',
2017-12-01 20:04:01 +01:00
]
2017-11-01 17:47:20 +01:00
};