screenshot-monitor-pro
Version:
A Node.js package for automated screenshot monitoring with SQLite database storage and configurable capture intervals
21 lines • 492 B
JavaScript
module.exports = {
testEnvironment: 'node',
testTimeout: 30000, // 30 seconds for screenshot tests
setupFilesAfterEnv: [],
collectCoverage: true,
coverageDirectory: 'coverage',
coverageReporters: ['text', 'lcov', 'html'],
coveragePathIgnorePatterns: [
'/node_modules/',
'/test/',
'/example.js'
],
testMatch: [
'**/test/**/*.test.js'
],
verbose: true,
forceExit: true,
clearMocks: true,
resetMocks: true,
restoreMocks: true
};