mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
13 lines
269 B
JavaScript
13 lines
269 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'
|
|
};
|