-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add tests to raise message for regenerate of lockfile or shrinkwrap w…
…hen a dependency has an empty object value; make lint fixes
- Loading branch information
Danielle Adams
committed
Jun 11, 2020
1 parent
c024dca
commit 74305db
Showing
3 changed files
with
140 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
'use strict' | ||
|
||
const common = require('../common-tap.js') | ||
const path = require('path') | ||
const test = require('tap').test | ||
|
||
const Tacks = require('tacks') | ||
const File = Tacks.File | ||
const Dir = Tacks.Dir | ||
|
||
const basedir = common.pkg | ||
const testdir = path.join(basedir, 'testdir') | ||
|
||
const fixture = new Tacks(Dir({ | ||
cache: Dir(), | ||
global: Dir(), | ||
tmp: Dir(), | ||
testdir: Dir({ | ||
'package-lock.json': File({ | ||
name: 'http-locks', | ||
version: '1.0.0', | ||
lockfileVersion: 1, | ||
requires: true, | ||
dependencies: { | ||
minimist: {} | ||
} | ||
}), | ||
'package.json': File({ | ||
name: 'http-locks', | ||
version: '1.0.0', | ||
dependencies: { | ||
minimist: common.registry + '/minimist/-/minimist-0.0.5.tgz' | ||
} | ||
}) | ||
}) | ||
})) | ||
|
||
function setup () { | ||
cleanup() | ||
fixture.create(basedir) | ||
} | ||
|
||
function cleanup () { | ||
fixture.remove(basedir) | ||
} | ||
|
||
test('setup', function (t) { | ||
setup() | ||
t.done() | ||
}) | ||
|
||
test('raises error to regenerate the lock file', function (t) { | ||
common.npm(['install'], {cwd: testdir}, function (err, code, stdout, stderr) { | ||
if (err) throw err | ||
t.match( | ||
stderr, | ||
'npm ERR! Something went wrong. Regenerate the package-lock.json with "npm install".', | ||
'returns message to regenerate package-lock' | ||
) | ||
|
||
t.done() | ||
}) | ||
}) | ||
|
||
test('cleanup', function (t) { | ||
cleanup() | ||
t.done() | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
'use strict' | ||
|
||
const common = require('../common-tap.js') | ||
const path = require('path') | ||
const test = require('tap').test | ||
|
||
const Tacks = require('tacks') | ||
const File = Tacks.File | ||
const Dir = Tacks.Dir | ||
|
||
const basedir = common.pkg | ||
const testdir = path.join(basedir, 'testdir') | ||
|
||
const fixture = new Tacks(Dir({ | ||
cache: Dir(), | ||
global: Dir(), | ||
tmp: Dir(), | ||
testdir: Dir({ | ||
'npm-shrinkwrap.json': File({ | ||
name: 'http-locks', | ||
version: '0.0.0', | ||
dependencies: { | ||
minimist: {} | ||
} | ||
}), | ||
'package.json': File({ | ||
name: 'http-locks', | ||
version: '1.0.0', | ||
dependencies: { | ||
minimist: common.registry + '/minimist/-/minimist-0.0.5.tgz' | ||
} | ||
}) | ||
}) | ||
})) | ||
|
||
function setup () { | ||
cleanup() | ||
fixture.create(basedir) | ||
} | ||
|
||
function cleanup () { | ||
fixture.remove(basedir) | ||
} | ||
|
||
test('setup', function (t) { | ||
setup() | ||
t.done() | ||
}) | ||
|
||
test('raises error to regenerate the shrinkwrap', function (t) { | ||
common.npm(['install'], {cwd: testdir}, function (err, code, stdout, stderr) { | ||
if (err) throw err | ||
t.match( | ||
stderr, | ||
'npm ERR! If using a shrinkwrap, regenerate with "npm shrinkwrap".', | ||
'returns message to regenerate shrinkwrap' | ||
) | ||
|
||
t.done() | ||
}) | ||
}) | ||
|
||
test('cleanup', function (t) { | ||
cleanup() | ||
t.done() | ||
}) |