deepseek-ai / deepseek-ai/DeepSeek-Coder-V2
`voice.test.ts` called `voiceSpeakHandler` with only two arguments, but the handler is typed as an Express `RequestHandler` and expects `(req, res, next)`. This caused a TypeScript `TS2554` error during `pnpm typecheck`.
- Dominant language
- No language data
- Stars
- 7k
- Forks
- 1.1k
- PR merge metrics
- No merged PRs in 30d
Description
`voice.test.ts` called `voiceSpeakHandler` with only two arguments, but the handler is typed as an Express `RequestHandler` and expects `(req, res, next)`. This caused a TypeScript `TS2554` error during `pnpm typecheck`.
- Updated the test invocation to pass a no-op `next` callback:
```ts
await voiceSpeakHandler(req, res, () => {});
```
_Originally posted by @Copilot in https://github.com/akshathh893-coder/KAIRO-1/pull/196_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/8_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/9_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/10_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/11_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/12_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/13_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/14_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/15_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/16_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/17_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/18_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/19_
_Originally posted by @akshathh893-coder in https://github.com/akshathh893-coder/KAIRO-1/issues/204_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/48_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/49_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/50_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/51_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/52_
_Originally posted by @akshathh893-coder in https://github.com/akshathh893-coder/KAIRO-1/issues/206_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/53_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/54_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/55_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/56_
_Originally posted by @akshathh893-coder in https://github.com/akshathh893-coder/KAIRO-1/issues/207_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/57_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/58_
_Originally posted by @akshathh893-coder in https://github.com/Kairo-v1/KAIRO-1/issues/59_
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.