mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
/* eslint comma-dangle: 0 */
|
|
|
|
module.exports = {
|
|
'name': 'verdaccio-jest',
|
|
'verbose': true,
|
|
'collectCoverage': true,
|
|
'coveragePathIgnorePatterns': [
|
|
'node_modules',
|
|
'fixtures'
|
|
],
|
|
'testRegex': '(/test/unit.*\\.spec|test/functional.*\\.func)\\.js'
|
|
// 'testRegex': '(test/functional.*\\.func)\\.js'
|
|
};
|