summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/unit-child-path.js
blob: 5e9b452a381a8975150e4524e8de71716cfe28ac (plain)
1
2
3
4
5
6
7
8
9
'use strict'
var test = require('tap').test
var childPath = require('../../lib/utils/child-path.js')

test('childPath', function (t) {
  t.is(childPath('/path/to', {name: 'abc'}), '/path/to/node_modules/abc', 'basic use')
  t.is(childPath('/path/to', {package: {name: '@zed/abc'}}), '/path/to/node_modules/@zed/abc', 'scoped use')
  t.end()
})