Integration test running with test server

This commit is contained in:
2025-06-16 22:41:29 -07:00
parent 927d8a7f0c
commit 6084c54e2e
9 changed files with 3614 additions and 23 deletions

22
jest.config.integ.cjs Normal file
View File

@@ -0,0 +1,22 @@
console.log("Jest config file read.");
// const { spawn } = require("child_process");
// const ls = spawn('ls', ['-lh', './test']);
// ls.stdout.on('data', (data) => { console.log(`stdout: ${data}`); });
// ls.stderr.on('data', (data) => {
// console.error(`stderr: ${data}`);
// });
// ls.on('close', (code) => {
// console.log(`child process exited with code ${code}`);
// });
module.exports = {
globalSetup: "./test/setup.cjs",
globalTeardown: "./test/teardown.cjs",
testPathIgnorePatterns: ["/node_modules/"],
testTimeout: 5000
};