mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-09 04:02:35 +00:00
15 lines
562 B
TypeScript
15 lines
562 B
TypeScript
/** Minimal concrete Session query for continuation and catalog integration tests. */
|
|
|
|
import SessionQueryEngine from '@deepseek-ai/dsh-session-query'
|
|
|
|
/** Session query implementation whose search faces are outside these tests. */
|
|
export class TestSessionQuery extends SessionQueryEngine {
|
|
override searchSessions(): Promise<never> {
|
|
return Promise.reject(new Error('session search is not configured in this test'))
|
|
}
|
|
|
|
override searchEvents(): Promise<never> {
|
|
return Promise.reject(new Error('event search is not configured in this test'))
|
|
}
|
|
}
|