node-half.spec.ts 365 B

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