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:
Diffstat (limited to 'test/lib/npm.js')
-rw-r--r--test/lib/npm.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/lib/npm.js b/test/lib/npm.js
index 541c1258d..998e96314 100644
--- a/test/lib/npm.js
+++ b/test/lib/npm.js
@@ -548,12 +548,14 @@ t.test('output clears progress and console.logs the message', async t => {
t.end()
})
-t.test('unknown command', async t => {
+t.test('aliases and typos', async t => {
const { npm } = await loadMockNpm(t, { load: false })
- await t.rejects(
- npm.cmd('thisisnotacommand'),
- { code: 'EUNKNOWNCOMMAND' }
- )
+ await t.rejects(npm.cmd('thisisnotacommand'), { code: 'EUNKNOWNCOMMAND' })
+ await t.rejects(npm.cmd(''), { code: 'EUNKNOWNCOMMAND' })
+ await t.rejects(npm.cmd('birt'), { code: 'EUNKNOWNCOMMAND' })
+ await t.resolves(npm.cmd('it'), { name: 'install-test' })
+ await t.resolves(npm.cmd('installTe'), { name: 'install-test' })
+ await t.resolves(npm.cmd('birthday'), { name: 'birthday' })
})
t.test('explicit workspace rejection', async t => {