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
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-02-19 10:36:10 +0300
committernlf <quitlahok@gmail.com>2021-02-22 20:13:54 +0300
commit9d81e0ceba7d69e0651662508415ee3705bddfd9 (patch)
treed741194d5dbe8030bcdaaadc94297724fcff4df3 /test/lib/shrinkwrap.js
parentb018eb84266dc5a02274849135ca148cb59cc349 (diff)
test: fix typo in shrinkwrap.js
contructor -> constructor PR-URL: https://github.com/npm/cli/pull/2729 Credit: @eltociear Close: #2729 Reviewed-by: @wraithgar
Diffstat (limited to 'test/lib/shrinkwrap.js')
-rw-r--r--test/lib/shrinkwrap.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/lib/shrinkwrap.js b/test/lib/shrinkwrap.js
index ed8fd329c..51fd7931a 100644
--- a/test/lib/shrinkwrap.js
+++ b/test/lib/shrinkwrap.js
@@ -52,7 +52,7 @@ t.test('no args', t => {
t.deepEqual(
args,
{ ...npm.flatOptions, path: npm.prefix },
- 'should call arborist contructor with expected args'
+ 'should call arborist constructor with expected args'
)
}
@@ -102,7 +102,7 @@ t.test('no virtual tree', t => {
t.deepEqual(
args,
{ ...npm.flatOptions, path: npm.prefix },
- 'should call arborist contructor with expected args'
+ 'should call arborist constructor with expected args'
)
}
@@ -156,7 +156,7 @@ t.test('existing package-json file', t => {
t.deepEqual(
args,
{ ...npm.flatOptions, path: npm.prefix },
- 'should call arborist contructor with expected args'
+ 'should call arborist constructor with expected args'
)
}
@@ -217,7 +217,7 @@ t.test('update shrinkwrap file version', t => {
t.deepEqual(
args,
{ ...npm.flatOptions, path: npm.prefix },
- 'should call arborist contructor with expected args'
+ 'should call arborist constructor with expected args'
)
}
@@ -270,7 +270,7 @@ t.test('update to date shrinkwrap file', t => {
t.deepEqual(
args,
{ ...npm.flatOptions, path: npm.prefix },
- 'should call arborist contructor with expected args'
+ 'should call arborist constructor with expected args'
)
}