// This tests that cp() copies a nested folder structure with files and folders. import { mustCall, mustNotMutateObjectDeep } from '../common/index.mjs'; import { nextdir, assertDirEquivalent } from '../common/fs.js'; import assert from 'node:assert'; import { cp } from 'node:fs'; import tmpdir from '../common/tmpdir.js'; import fixtures from '../common/fixtures.js'; tmpdir.refresh(); const src = fixtures.path('copy/kitchen-sink'); const dest = nextdir(); cp(src, dest, mustNotMutateObjectDeep({ recursive: true }), mustCall((err) => { assert.strictEqual(err, null); assertDirEquivalent(src, dest); }));