Skip to content

Commit

Permalink
Actually make the yargs version test do something
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceK33z committed Feb 25, 2018
1 parent cdd10fa commit 1e7acca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cli.test.js
Expand Up @@ -10,8 +10,8 @@ const runDevServer = require('./helpers/run-webpack-dev-server');
describe('CLI Dependencies', () => {
it('should lock down certain dependencies', () => {
const yargs = pkg.dependencies.yargs;
// yargs needs to be locked down to 6.6.0
semver.satisfies(yargs, '6.6.0');
// yargs needs to be locked down to 9.0.1, since that is what webpack-cli is also doing
assert(semver.satisfies(yargs, '9.0.1'));
});
});

Expand Down

0 comments on commit 1e7acca

Please sign in to comment.