(rootDir: string)
| 11 | } from "@/node/services/bashMonitorWakeStore"; |
| 12 | |
| 13 | function makeConfig(rootDir: string): { |
| 14 | sessionsDir: string; |
| 15 | getSessionDir: (id: string) => string; |
| 16 | } { |
| 17 | const sessionsDir = path.join(rootDir, "sessions"); |
| 18 | return { sessionsDir, getSessionDir: (id: string) => path.join(sessionsDir, id) }; |
| 19 | } |
| 20 | |
| 21 | function payload(overrides: Partial<BashMonitorWakePayload> = {}): BashMonitorWakePayload { |
| 22 | return { |
no outgoing calls
no test coverage detected