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 0f81e60 commit bf60423Copy full SHA for bf60423
1 file changed
tests/external-mysql-runtime-service.test.ts
@@ -150,6 +150,7 @@ try {
150
const connectorResponse = await server.playground.run({ code: "<?php echo getenv('DB_PASSWORD');" })
151
assert.equal(connectorResponse.text, generatedPassword, "generated password reaches PHP through the ephemeral run environment")
152
assert.equal(bootstrapRuns[0]?.env?.DB_PASSWORD, generatedPassword)
153
+ assert.equal(JSON.stringify(bootstrapCalls).includes(generatedPassword), false, "Playground startup options do not serialize the generated password")
154
await server[Symbol.asyncDispose]()
155
const mounts = bootstrapCalls[0]?.["mount-before-install"] ?? []
156
const autoPrependPath = mounts.find((mount) => mount.vfsPath === "/internal/shared/wp-codebox-auto-prepend.php")?.hostPath
0 commit comments