mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
17 lines
480 B
TypeScript
17 lines
480 B
TypeScript
/** Successful subprocess fixture for the Loader-smoke harness. */
|
|
|
|
let input = ''
|
|
process.stdin.setEncoding('utf8')
|
|
process.stdin.on('data', (chunk: string) => { input += chunk })
|
|
process.stdin.on('end', () => {
|
|
console.log(JSON.stringify({
|
|
configPath: process.argv[2],
|
|
cwd: process.cwd(),
|
|
dshHome: process.env.DSH_HOME,
|
|
agentsHome: process.env.DSH_AGENTS_HOME,
|
|
marker: process.env.LOADER_SMOKE_MARKER,
|
|
input,
|
|
}))
|
|
console.error('fixture stderr')
|
|
})
|