Skip to content

Commit 1e7acca

Browse files
committed
Actually make the yargs version test do something
1 parent cdd10fa commit 1e7acca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cli.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ const runDevServer = require('./helpers/run-webpack-dev-server');
1010
describe('CLI Dependencies', () => {
1111
it('should lock down certain dependencies', () => {
1212
const yargs = pkg.dependencies.yargs;
13-
// yargs needs to be locked down to 6.6.0
14-
semver.satisfies(yargs, '6.6.0');
13+
// yargs needs to be locked down to 9.0.1, since that is what webpack-cli is also doing
14+
assert(semver.satisfies(yargs, '9.0.1'));
1515
});
1616
});
1717

0 commit comments

Comments
 (0)