UNPKG

spur-common

Version:

A Node.JS library of common modules used as a base to most Node.JS applications.

25 lines (24 loc) 461 B
module.exports = { collectCoverage: true, collectCoverageFrom: [ './src/**/*.js?(x)' ], coverageDirectory: 'coverage', coveragePathIgnorePatterns: [ '/node_modules/' ], moduleFileExtensions: [ 'js', 'json' ], rootDir: '.', testEnvironment: 'node', testMatch: [ '**/__tests__/**/*.js?(x)', '**/?(*.)+(spec).js?(x)' ], testPathIgnorePatterns: [ '/node_modules/' ], setupFiles: ['./test/testSetup.js'], };