Files
pnpm/test/support/testDefaults.ts
2016-10-15 19:10:09 +03:00

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)
}