diff options
Diffstat (limited to 'deps/npm/test/lib/commands/publish.js')
-rw-r--r-- | deps/npm/test/lib/commands/publish.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/npm/test/lib/commands/publish.js b/deps/npm/test/lib/commands/publish.js index 0a7f961bfb..0acce8b001 100644 --- a/deps/npm/test/lib/commands/publish.js +++ b/deps/npm/test/lib/commands/publish.js @@ -290,6 +290,7 @@ t.test('can publish a tarball', async t => { name: 'my-cool-tarball', version: '1.2.3', }), + 'README.md': 'This is my readme', }, }) const tar = require('tar') @@ -311,6 +312,9 @@ t.test('can publish a tarball', async t => { { name: 'my-cool-tarball', version: '1.2.3', + readme: 'This is my readme', + description: 'This is my readme', + readmeFilename: 'README.md', }, 'sent manifest to lib pub' ) |