mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-08 22:21:23 +00:00
22 lines
No EOL
394 B
JavaScript
22 lines
No EOL
394 B
JavaScript
class StdioClientTransport {
|
|
constructor() {
|
|
this.start = jest.fn().mockResolvedValue(undefined)
|
|
this.close = jest.fn().mockResolvedValue(undefined)
|
|
this.stderr = {
|
|
on: jest.fn()
|
|
}
|
|
}
|
|
}
|
|
|
|
class StdioServerParameters {
|
|
constructor() {
|
|
this.command = ''
|
|
this.args = []
|
|
this.env = {}
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
StdioClientTransport,
|
|
StdioServerParameters
|
|
} |