Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/integration/page.test.js (renamed from test/google.test.js)2
-rw-r--r--test/integration/setup.cjs (renamed from test/setup.cjs)10
-rw-r--r--test/integration/teardown.cjs (renamed from test/teardown.cjs)0
3 files changed, 2 insertions, 10 deletions
diff --git a/test/google.test.js b/test/integration/page.test.js
index 56729bf..7157bff 100644
--- a/test/google.test.js
+++ b/test/integration/page.test.js
@@ -12,7 +12,7 @@ beforeAll(async () => {
});
it('loads the page', async () => {
- await driver.get("http://localhost:8080");
+ await driver.get("http://localhost:3005");
expect(await driver.getTitle()).toEqual('Infantry Combat Solo Basic');
});
diff --git a/test/setup.cjs b/test/integration/setup.cjs
index 01551a7..c476077 100644
--- a/test/setup.cjs
+++ b/test/integration/setup.cjs
@@ -2,20 +2,12 @@ console.log("\nSpawning server process...");
const { spawn } = require("child_process");
module.exports = async function () {
- const child = spawn("node", ["dev-server.cjs"]);
+ const child = spawn("node", ["dev-server.cjs", "--test"]);
child.stdout.on('data', (data) => {
console.log(`${data}`);
});
- // child.stderr.on('data', (data) => {
- // console.error(`stderr: ${data}`);
- // });
-
- // child.on('close', (code) => {
- // console.log(`child process exited with code ${code}`);
- // });
-
globalThis.__INTEG_TEST_SERVER_PID__ = child.pid;
child.stderr.on("data", (data) => {
diff --git a/test/teardown.cjs b/test/integration/teardown.cjs
index 1872061..1872061 100644
--- a/test/teardown.cjs
+++ b/test/integration/teardown.cjs