Move takeScreenshot() function into a test helper file

This commit is contained in:
2025-06-16 22:41:31 -07:00
parent effb3c9e21
commit 1a4fc73442
4 changed files with 14 additions and 21 deletions

View File

@@ -3,6 +3,7 @@ console.log('Jest config file read.');
module.exports = {
globalSetup: './test/integration/setup.cjs',
globalTeardown: './test/integration/teardown.cjs',
setupFiles: ['./test/integration/helpers.cjs'],
testPathIgnorePatterns: ['/node_modules/', 'test/unit'],
testTimeout: 5000,
};