mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-24 10:01:48 -04:00
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import {PnpmOptions} from '../../src'
|
|
import globalPath from './globalPath'
|
|
|
|
export default function testDefaults (opts?: PnpmOptions): PnpmOptions {
|
|
return Object.assign({
|
|
storePath: 'node_modules/.store',
|
|
registry: 'http://localhost:4873/',
|
|
globalPath,
|
|
}, opts)
|
|
}
|