easy-postgresql-accessor
Version:
A powerful PostgreSQL data access layer with automatic schema discovery, CRUD operations, and SQL injection protection
14 lines (13 loc) • 359 B
JavaScript
module.exports = {
testEnvironment: 'node',
testMatch: ['**/__tests__/**/*.js', '**/?(*.)+(spec|test).js'],
testPathIgnorePatterns: ['/integration/'],
collectCoverageFrom: [
'src/**/*.js',
'!src/**/*.test.js',
'!src/**/*.spec.js'
],
coverageDirectory: 'coverage',
coverageReporters: ['text', 'lcov', 'html'],
testTimeout: 10000
};