0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/jest.config.js

23 lines
537 B
JavaScript
Raw Normal View History

2017-11-01 11:47:20 -05:00
/* eslint comma-dangle: 0 */
module.exports = {
'name': 'verdaccio-jest',
'verbose': true,
'collectCoverage': true,
'coveragePathIgnorePatterns': [
'node_modules',
'fixtures'
],
2017-11-28 11:05:58 -05:00
'testRegex': '(/test/unit.*\\.spec|test/functional.*\\.func|/test/webui/.*\\.spec)\\.js',
2017-12-02 05:19:08 -05:00
// 'testRegex': '(test/functional.*\\.func)\\.js'
2017-11-28 11:05:58 -05:00
'setupFiles': [
'./test/webui/global.js'
],
'modulePathIgnorePatterns': [
'global.js'
],
'moduleNameMapper': {
'\\.(scss)$': '<rootDir>/node_modules/jest-css-modules'
}
2017-11-01 11:47:20 -05:00
};