native-write-stub.ts 309 B

1234567
  1. import { writeFileAtomic } from '@webnovel/core'
  2. import type { NativeWrite } from '../../src/native-write'
  3. /** Business-only tests; the real Loader suite owns DSH observation/CAS coverage. */
  4. export const nativeWriteStub: NativeWrite = async (root, op) => {
  5. writeFileAtomic(root, op.relPath, op.content)
  6. }