mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
344 B
10 lines
344 B
9 years ago
|
'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()
|
||
|
})
|