From f4481c5df9a1bd7e47620dc92cd28db872b095e0 Mon Sep 17 00:00:00 2001 From: Josh Saint Jacque Date: Wed, 22 Jan 2020 23:08:02 -0800 Subject: [PATCH] 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. --- src/server/processLauncher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/processLauncher.ts b/src/server/processLauncher.ts index db5e4bad2c..aa6cc012ef 100644 --- a/src/server/processLauncher.ts +++ b/src/server/processLauncher.ts @@ -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'))); }