(uuid: string)
| 11 | const originalBuildMode = process.env.NCODE_BUILD_MODE |
| 12 | |
| 13 | function createUserMessage(uuid: string): UserMessage { |
| 14 | return { |
| 15 | type: 'user', |
| 16 | uuid, |
| 17 | isMeta: false, |
| 18 | message: { |
| 19 | content: 'hello', |
| 20 | }, |
| 21 | } as unknown as UserMessage |
| 22 | } |
| 23 | |
| 24 | describe('replOnQuerySessionDispatch', () => { |
| 25 | beforeEach(() => { |
no outgoing calls
no test coverage detected