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.
16 lines
453 B
16 lines
453 B
'use strict'
|
|
var test = require('tap').test
|
|
var childPath = require('../../lib/utils/child-path.js')
|
|
var path = require('path')
|
|
|
|
test('childPath', function (t) {
|
|
t.is(
|
|
path.resolve(childPath('/path/to', {name: 'abc'})),
|
|
path.resolve('/path/to/node_modules/abc'),
|
|
'basic use')
|
|
t.is(
|
|
path.resolve(childPath('/path/to', {package: {name: '@zed/abc'}})),
|
|
path.resolve('/path/to/node_modules/@zed/abc'),
|
|
'scoped use')
|
|
t.end()
|
|
})
|