From 23967fe2f5ae9fb6d6c8a2cbc29845531f7acece Mon Sep 17 00:00:00 2001
From: Catalin Mititiuc
Date: Wed, 17 Apr 2024 22:26:53 -0700
Subject: Integration test running with test server
---
jest.config.integ.cjs | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 jest.config.integ.cjs
(limited to 'jest.config.integ.cjs')
diff --git a/jest.config.integ.cjs b/jest.config.integ.cjs
new file mode 100644
index 0000000..8336242
--- /dev/null
+++ b/jest.config.integ.cjs
@@ -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
+};
--
cgit v1.2.3