Skip to content

Commit aaabeb8

Browse files
committedAug 26, 2018
test(cli): remove outdated dependency lock test
1 parent 4e27954 commit aaabeb8

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed
 

‎package.json

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@
7474
"mocha": "^5.2.0",
7575
"mocha-sinon": "^2.0.0",
7676
"nyc": "^12.0.2",
77-
"semver": "^5.4.1",
7877
"should": "^13.2.0",
7978
"sinon": "^6.1.5",
8079
"standard-version": "^4.4.0",

‎test/cli.test.js

-10
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,8 @@
33
const assert = require('assert');
44
const path = require('path');
55
const execa = require('execa');
6-
const semver = require('semver');
7-
const pkg = require('../package.json');
86
const runDevServer = require('./helpers/run-webpack-dev-server');
97

10-
describe('CLI Dependencies', () => {
11-
it('should lock down certain dependencies', () => {
12-
const yargs = pkg.dependencies.yargs;
13-
// yargs needs to be locked down to 11.0.0, since that is what webpack-cli is also doing
14-
assert(semver.satisfies(yargs, '11.0.0'));
15-
});
16-
});
17-
188
describe('CLI', () => {
199
it('--progress', (done) => {
2010
runDevServer('--progress')

0 commit comments

Comments
 (0)
Please sign in to comment.