Skip to content

Commit 90e30ba

Browse files
committed
chore: wip
1 parent 8fb62e2 commit 90e30ba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/launchpad/test/real-php-test.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ describe('Real PHP Installation Test', () => {
1010

1111
try {
1212
// Check if we're in CI environment and find the correct working directory
13-
const isCI = process.env.CI === 'true' || process.env.GITHUB_ACTIONS === 'true'
1413
const workspaceRoot = process.cwd()
1514
const launchpadPath = join(workspaceRoot, 'packages', 'launchpad')
1615
const cliPath = join(launchpadPath, 'bin', 'launchpad')
@@ -139,7 +138,7 @@ describe('Real PHP Installation Test', () => {
139138
setTimeout(() => reject(new Error('Validation command timed out after 600 seconds')), 600000)
140139
})
141140

142-
const [output, stderr] = await Promise.race([
141+
const [output, _stderr] = await Promise.race([
143142
Promise.all([
144143
new Response(validationProc.stdout).text(),
145144
new Response(validationProc.stderr).text(),

0 commit comments

Comments
 (0)