fix(gui): merge adaptations to master's apiproxy defaults and deleted test hook
The origin/master merge introduced a required workspaceRoot on ApiProxyDefaults and deleted the ui-conversation test hook.ts helper. Add workspaceRoot to the new todo-projection api-proxy test and bind the todo-panel spec's selector hook via bindSnapshotSelector directly, matching the sibling specs.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
*/
|
||||
import { act, cleanup, fireEvent, render, screen } from '@testing-library/react'
|
||||
import { afterEach, describe, expect, it, vi } from 'vitest'
|
||||
import { hookOf } from './hook.ts'
|
||||
import { bindSnapshotSelector } from '@deepseek-ai/dsh-client-web-react'
|
||||
import { createSnapshotStore } from '@deepseek-ai/dsh-client-runtime/client'
|
||||
import type { TodoItem, ToolResultNode } from '@deepseek-ai/dsh-client-runtime/client'
|
||||
import type { UseSession } from '@deepseek-ai/dsh-client-ui-slots'
|
||||
@@ -19,7 +19,7 @@ afterEach(cleanup)
|
||||
|
||||
function sessionWith(todos: readonly TodoItem[]) {
|
||||
const store = createSnapshotStore<{ todos: readonly TodoItem[] }>({ todos })
|
||||
return { store, useSession: hookOf(store) as unknown as UseSession }
|
||||
return { store, useSession: bindSnapshotSelector(store) as unknown as UseSession }
|
||||
}
|
||||
|
||||
const LIST: TodoItem[] = [
|
||||
|
||||
Reference in New Issue
Block a user