fix: typo in the missing X Display error message (#13810)

This commit is contained in:
Andrey Lushnikov 2022-04-28 09:35:01 -06:00 committed by GitHub
parent e756528ad2
commit a06b06b82b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ import type { CallMetadata } from './instrumentation';
import { SdkObject } from './instrumentation';
export const kNoXServerRunningError = 'Looks like you launched a headed browser without having a XServer running.\n' +
'Set either \'headless: false\' or use \'xvfb-run <your-playwright-app>\' before running Playwright.\n\n<3 Playwright Team';
'Set either \'headless: true\' or use \'xvfb-run <your-playwright-app>\' before running Playwright.\n\n<3 Playwright Team';
export abstract class BrowserType extends SdkObject {
private _name: BrowserName;