Files
deepseek-harness/packages/client/runtime/tests/node-half.spec.ts
T

11 lines
365 B
TypeScript
Raw Normal View History

/** Node half: the empty host apply (Loader governance + dshClient discovery placeholder). */
import { describe, expect, it } from 'vitest'
import { apply } from '../src/index.ts'
describe('node half', () => {
it('apply is a no-op host placeholder', () => {
apply(undefined)
expect(true).toBe(true) // reaching here without throw is the contract
})
})