Web Dev Solutions

Catalin Mititiuc

From 0e2ddffc82a8fed48d5edd7be42be1d06a035314 Mon Sep 17 00:00:00 2001 From: Catalin Mititiuc Date: Thu, 2 May 2024 11:53:08 -0700 Subject: Change double quotes to single --- test/integration/page.test.js | 2 +- test/integration/setup.cjs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'test') diff --git a/test/integration/page.test.js b/test/integration/page.test.js index 7a987f7..9dfe828 100644 --- a/test/integration/page.test.js +++ b/test/integration/page.test.js @@ -11,7 +11,7 @@ let driver; beforeEach(async () => { driver = new Builder().forBrowser('chrome').setChromeOptions(chromeOptions).build(); - await driver.get("http://localhost:3005"); + await driver.get('http://localhost:3005'); }); it('loads the page', async () => { diff --git a/test/integration/setup.cjs b/test/integration/setup.cjs index a03d7de..2ea9e63 100644 --- a/test/integration/setup.cjs +++ b/test/integration/setup.cjs @@ -1,8 +1,8 @@ -console.log("\nSpawning server process..."); -const { spawn } = require("child_process"); +console.log('\nSpawning server process...'); +const { spawn } = require('child_process'); module.exports = async function () { - const child = spawn("node", ["server.cjs"]); + const child = spawn('node', ['server.cjs']); child.stdout.on('data', (data) => { console.log(`${data}`); @@ -10,10 +10,10 @@ module.exports = async function () { globalThis.__INTEG_TEST_SERVER_PID__ = child.pid; - child.stderr.on("data", (data) => { + child.stderr.on('data', (data) => { const str = data.toString(); - console.log("[server]", str); - if (str.includes("localhost:3005")) { + console.log('[server]', str); + if (str.includes('localhost:3005')) { setTimeout(resolve, 200); } }); -- cgit v1.2.3