test(picker): cover the node halves of the split directory-picker faces

This commit is contained in:
imccyu
2026-08-11 23:33:17 +08:00
parent 92e817bf38
commit 51b5f5b565
2 changed files with 18 additions and 0 deletions
@@ -7,6 +7,7 @@ import { SlotsService } from '@deepseek-ai/dsh-client-runtime/client'
import type { DirectoryFlowOwnerProps } from '@deepseek-ai/dsh-client-ui-workspace/client' import type { DirectoryFlowOwnerProps } from '@deepseek-ai/dsh-client-ui-workspace/client'
import { apply, inject } from '../src/client/index.ts' import { apply, inject } from '../src/client/index.ts'
import { NativeDirectoryFlow } from '../src/client/flow.ts' import { NativeDirectoryFlow } from '../src/client/flow.ts'
import { apply as nodeApply } from '../src/index.ts'
afterEach(cleanup) afterEach(cleanup)
@@ -225,3 +226,11 @@ describe('directory-picker-native client half', () => {
expect(opened.container.innerHTML).toBe('') expect(opened.container.innerHTML).toBe('')
}) })
}) })
describe('directory-picker-native node half', () => {
// The invariant companion is mounted by the vitest-wide invariant host on
// every Context this suite creates; its registration is covered there.
it('the node apply is an inert loader seat', () => {
expect(() => { nodeApply() }).not.toThrow()
})
})
@@ -9,6 +9,7 @@ import { usePinnedBrowserLanguages } from '@deepseek-ai/dsh-client-test-runtime'
import type { DirectoryFlowOwnerProps } from '@deepseek-ai/dsh-client-ui-workspace/client' import type { DirectoryFlowOwnerProps } from '@deepseek-ai/dsh-client-ui-workspace/client'
import { apply, inject } from '../src/client/index.ts' import { apply, inject } from '../src/client/index.ts'
import { BrowseDirectoryFlow } from '../src/client/flow.ts' import { BrowseDirectoryFlow } from '../src/client/flow.ts'
import { apply as nodeApply } from '../src/index.ts'
// The service reads its initial locale from the browser; these specs assert // The service reads its initial locale from the browser; these specs assert
// the shipped Chinese copy, so they state the browser they assume. // the shipped Chinese copy, so they state the browser they assume.
@@ -221,3 +222,11 @@ describe('directory-picker-browse client half', () => {
expect(view.container.innerHTML).toBe('') expect(view.container.innerHTML).toBe('')
}) })
}) })
describe('directory-picker-browse node half', () => {
// The invariant companion is mounted by the vitest-wide invariant host on
// every Context this suite creates; its registration is covered there.
it('the node apply is an inert loader seat', () => {
expect(() => { nodeApply() }).not.toThrow()
})
})