2026-08-10 20:38:57 +08:00
|
|
|
/** Node half: the empty host apply (Loader governance + dsh.client discovery placeholder). */
|
2026-07-19 21:17:57 +08:00
|
|
|
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
|
|
|
|
|
})
|
|
|
|
|
})
|