Skip to content

Commit

Permalink
chore(install): mention yarn along npm in the error message (#1759)
Browse files Browse the repository at this point in the history
  • Loading branch information
yujiosaka authored and aslushnikov committed Jan 10, 2018
1 parent c29822d commit f6b7c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Launcher.js
Expand Up @@ -92,7 +92,7 @@ class Launcher {
if (typeof chromeExecutable !== 'string') {
const downloader = Downloader.createDefault();
const revisionInfo = downloader.revisionInfo(downloader.currentPlatform(), ChromiumRevision);
console.assert(revisionInfo.downloaded, `Chromium revision is not downloaded. Run "npm install"`);
console.assert(revisionInfo.downloaded, `Chromium revision is not downloaded. Run "yarn install" or "npm install"`);
chromeExecutable = revisionInfo.executablePath;
}
if (Array.isArray(options.args))
Expand Down

0 comments on commit f6b7c13

Please sign in to comment.