Update error message to point to existing docs

This change edits the suggested documentation message so that it points to a valid URL.

It makes sense that eventually we should write a troubleshooting doc. In the meantime, I think this is a reasonable alternative. Happy to point it somewhere else if it's desired.
This commit is contained in:
Josh Saint Jacque 2020-01-22 23:08:02 -08:00 committed by GitHub
parent 7e8bce7911
commit f4481c5df9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,7 +166,7 @@ export function waitForLine(process: childProcess.ChildProcess, inputStream: str
'Failed to launch browser!' + (error ? ' ' + error.message : ''),
stderr,
'',
'TROUBLESHOOTING: https://github.com/Microsoft/playwright/blob/master/docs/troubleshooting.md',
'DOCUMENTATION: https://github.com/Microsoft/playwright/blob/master/docs/api.md',
'',
].join('\n')));
}