@neurolint/cli
Version:
NeuroLint CLI for React/Next.js modernization with advanced 6-layer orchestration and intelligent AST transformations
19 lines (18 loc) • 420 B
JavaScript
module.exports = {
testEnvironment: 'node',
collectCoverageFrom: [
'index.js',
'lib/**/*.js',
'!lib/**/*.test.js',
'!node_modules/**'
],
testMatch: [
'**/test/**/*.test.js',
'**/__tests__/**/*.js',
'**/?(*.)+(spec|test).js'
],
coverageDirectory: 'coverage',
coverageReporters: ['text', 'lcov', 'html'],
testTimeout: 30000,
setupFilesAfterEnv: ['<rootDir>/test/setup.js']
};