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.
 
 
 
 
 
 

9 lines
344 B

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