We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1247c86 commit 38c6be5Copy full SHA for 38c6be5
adex/tests/utils.js
@@ -41,6 +41,8 @@ function waitForServerStart(devServerProc) {
41
serverReady = true
42
}
43
44
+ console.log(stdout)
45
+
46
if (stdout.match(/localhost:(\d+)/) != null) {
47
const matchedPort = stdout.match(/localhost:(\d+)/)
48
devServerURL.port = matchedPort[1]
@@ -71,8 +73,8 @@ function waitForServerStart(devServerProc) {
71
73
72
74
75
/**
-* @param {string} fixturePath
-*/
76
+ * @param {string} fixturePath
77
+ */
78
export async function launchDemoDevServer(fixturePath) {
79
console.log(`launching on ${dir(fixturePath)}`)
80
/** @type {import('node:child_process').ChildProcess} */
0 commit comments