mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-24 18:11:39 -04:00
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
import prepare from '@pnpm/prepare'
|
|
import {
|
|
installPkgs,
|
|
} from 'supi'
|
|
import tape = require('tape')
|
|
import promisifyTape from 'tape-promise'
|
|
import { testDefaults } from './utils'
|
|
|
|
const test = promisifyTape(tape)
|
|
|
|
test('packageImportMethod can be set to copy', async (t: tape.Test) => {
|
|
const project = prepare(t)
|
|
|
|
await installPkgs(['is-negative'], await testDefaults({}, {}, {}, { packageImportMethod: 'copy' }))
|
|
|
|
const m = project.requireModule('is-negative')
|
|
t.ok(m, 'is-negative is available with packageImportMethod = copy')
|
|
})
|
|
|
|
test('copy does not fail on package that self-requires itself', async (t: tape.Test) => {
|
|
const project = prepare(t)
|
|
|
|
await installPkgs(['requires-itself'], await testDefaults({}, {}, {}, { packageImportMethod: 'copy' }))
|
|
|
|
const m = project.requireModule('requires-itself/package.json')
|
|
t.ok(m, 'requires-itself is available with packageImportMethod = copy')
|
|
|
|
const shr = await project.loadShrinkwrap()
|
|
t.deepEqual(shr.packages['/requires-itself/1.0.0'].dependencies, { 'is-positive': '1.0.0' })
|
|
})
|