Skip to content

Commit

Permalink
Update test to import ncp from re-exports
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Oct 20, 2023
1 parent 47db735 commit e125aa2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/copy/__tests__/copy-preserve-timestamp.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const fs = require('../../')
const os = require('os')
const path = require('path')
const copy = require('../copy')
const { copy } = require('../')
const utimesSync = require('../../util/utimes').utimesMillisSync
const assert = require('assert')

Expand Down
2 changes: 1 addition & 1 deletion lib/copy/__tests__/ncp/ncp-error-perm.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
const fs = require('fs')
const os = require('os')
const fse = require('../../..')
const ncp = require('../../copy')
const { copy: ncp } = require('../../')
const path = require('path')
const assert = require('assert')

Expand Down
2 changes: 1 addition & 1 deletion lib/copy/__tests__/ncp/ncp.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

const fs = require('fs')
const ncp = require('../../copy')
const { copy: ncp } = require('../../')
const path = require('path')
const rimraf = require('rimraf')
const assert = require('assert')
Expand Down
2 changes: 1 addition & 1 deletion lib/copy/__tests__/ncp/symlink.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const fs = require('fs')
const os = require('os')
const fse = require('../../..')
const ncp = require('../../copy')
const { copy: ncp } = require('../../')
const path = require('path')
const assert = require('assert')

Expand Down

0 comments on commit e125aa2

Please sign in to comment.