test(cli): allow Windows help smoke startup budget

This commit is contained in:
pku-xht
2026-08-25 18:46:42 +08:00
parent 09fcf48ad8
commit 847c13a117
+1 -1
View File
@@ -392,7 +392,7 @@ describe.skipIf(!existsSync(dshBin))('dsh BUILT bin (node lib/bin.js, no tsx)',
} finally {
rmSync(home, { recursive: true, force: true })
}
}, 30_000)
}, process.platform === 'win32' ? 60_000 : 30_000)
it('reports SDK startup failure when stdin reaches EOF first', async () => {
const home = mkdtempSync(join(tmpdir(), 'dsh-built-sdk-startup-failure-'))