Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2021-08-19 16:58:48 +0300
committerGar <gar+gh@danger.computer>2021-08-19 17:29:28 +0300
commite9e5ee560e2baf694843df852d027fb9f2dbcb06 (patch)
tree844f77a8a1c4c173f9047edf9dcdff2ee2242e62 /test
parent991a3bd39f0abf8614373f267419c7b8f6e279ac (diff)
@npmcli/arborist@2.8.2
* fix: treat top-level global packages as "top" nodes * fix: load global symlinks implicitly as file: deps * fix(reify): debug crash when extracting into symlink * fix: node_modules must be a directory * fix: make Node.children() a case-insensitive Map * fix(reify): verify existing deps in nm are dirs
Diffstat (limited to 'test')
-rw-r--r--test/lib/utils/completion/installed-deep.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lib/utils/completion/installed-deep.js b/test/lib/utils/completion/installed-deep.js
index 21e77a568..aa0d85ec1 100644
--- a/test/lib/utils/completion/installed-deep.js
+++ b/test/lib/utils/completion/installed-deep.js
@@ -219,6 +219,8 @@ t.test('limit depth', async t => {
[
['bar', '-g'],
['foo', '-g'],
+ // XXX https://github.com/npm/statusboard/issues/380
+ ['a-bar', '-g'],
'a', 'b',
'c', 'ch',
'd', 'e',
@@ -248,6 +250,8 @@ t.test('limit depth as global', async t => {
[
'bar',
'foo',
+ // https://github.com/npm/statusboard/issues/380
+ 'a-bar',
],
'should reorder so that packages above that level depth goes last'
)