From 4fe8f1d9f2f97ea78ad8d23e0ddcd30f7183cf5b Mon Sep 17 00:00:00 2001 From: SukkaW Date: Thu, 19 Oct 2023 23:45:13 +0800 Subject: [PATCH] Update test to import `copy` from main exports --- lib/copy/__tests__/copy-broken-symlink.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/copy/__tests__/copy-broken-symlink.test.js b/lib/copy/__tests__/copy-broken-symlink.test.js index 81e46dea5..68d989d59 100644 --- a/lib/copy/__tests__/copy-broken-symlink.test.js +++ b/lib/copy/__tests__/copy-broken-symlink.test.js @@ -5,7 +5,7 @@ const os = require('os') const fse = require('../..') const path = require('path') const assert = require('assert') -const copy = require('../copy') +const { copy } = require('../') /* global afterEach, beforeEach, describe, it */