File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ export class Chromium implements BrowserType {
248
248
_resolveExecutablePath ( ) : { executablePath : string ; missingText : string | null ; } {
249
249
const browserFetcher = this . _createBrowserFetcher ( ) ;
250
250
const revisionInfo = browserFetcher . revisionInfo ( ) ;
251
- const missingText = ! revisionInfo . local ? `Chromium revision is not downloaded. Run "npm install" or "yarn install" ` : null ;
251
+ const missingText = ! revisionInfo . local ? `Chromium revision is not downloaded. Run "npm install"` : null ;
252
252
return { executablePath : revisionInfo . executablePath , missingText } ;
253
253
}
254
254
}
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ export class Firefox implements BrowserType {
227
227
_resolveExecutablePath ( ) {
228
228
const browserFetcher = this . _createBrowserFetcher ( ) ;
229
229
const revisionInfo = browserFetcher . revisionInfo ( ) ;
230
- const missingText = ! revisionInfo . local ? `Firefox revision is not downloaded. Run "npm install" or "yarn install" ` : null ;
230
+ const missingText = ! revisionInfo . local ? `Firefox revision is not downloaded. Run "npm install"` : null ;
231
231
return { executablePath : revisionInfo . executablePath , missingText } ;
232
232
}
233
233
}
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ export class WebKit implements BrowserType {
218
218
_resolveExecutablePath ( ) : { executablePath : string ; missingText : string | null ; } {
219
219
const browserFetcher = this . _createBrowserFetcher ( ) ;
220
220
const revisionInfo = browserFetcher . revisionInfo ( ) ;
221
- const missingText = ! revisionInfo . local ? `WebKit revision is not downloaded. Run "npm install" or "yarn install" ` : null ;
221
+ const missingText = ! revisionInfo . local ? `WebKit revision is not downloaded. Run "npm install"` : null ;
222
222
return { executablePath : revisionInfo . executablePath , missingText } ;
223
223
}
224
224
}
You can’t perform that action at this time.
0 commit comments