Skip to content

Commit

Permalink
fixing lint (yarnpkg#3070)
Browse files Browse the repository at this point in the history
  • Loading branch information
bestander authored and Maël Nison committed Apr 7, 2017
1 parent fd98cb9 commit 8d3d809
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/commands/install/integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,15 @@ test.concurrent("production mode with deduped dev dep shouldn't be removed", asy
test.concurrent("production mode dep on package in dev deps shouldn't be removed", async () => {
await runInstall({production: true}, 'install-prod-deduped-direct-dev-dep', async (config) => {
expect(
(await fs.readJson(path.join(config.cwd, 'node_modules', 'a', 'package.json'))).version
(await fs.readJson(path.join(config.cwd, 'node_modules', 'a', 'package.json'))).version,
).toEqual('1.0.0');

expect(
(await fs.readJson(path.join(config.cwd, 'node_modules', 'b', 'package.json'))).version
(await fs.readJson(path.join(config.cwd, 'node_modules', 'b', 'package.json'))).version,
).toEqual('1.0.0');

expect(
(await fs.readJson(path.join(config.cwd, 'node_modules', 'c', 'package.json'))).version
(await fs.readJson(path.join(config.cwd, 'node_modules', 'c', 'package.json'))).version,
).toEqual('1.0.0');
});
});
Expand Down

0 comments on commit 8d3d809

Please sign in to comment.