From 493ec4cc2620f6846f043a58ef4625097f6f575e Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Fri, 14 May 2021 06:00:26 +0900 Subject: [PATCH] Fix typo in host.ts (#43930) encounted -> encountered --- src/testRunner/parallel/host.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testRunner/parallel/host.ts b/src/testRunner/parallel/host.ts index d1db63e2f5a..abc486c9f72 100644 --- a/src/testRunner/parallel/host.ts +++ b/src/testRunner/parallel/host.ts @@ -285,7 +285,7 @@ namespace Harness.Parallel.Host { worker.process.on("message", (data: ParallelClientMessage) => { switch (data.type) { case "error": { - console.error(`Test worker encounted unexpected error${data.payload.name ? ` during the execution of test ${data.payload.name}` : ""} and was forced to close: + console.error(`Test worker encountered unexpected error${data.payload.name ? ` during the execution of test ${data.payload.name}` : ""} and was forced to close: Message: ${data.payload.error} Stack: ${data.payload.stack}`); return process.exit(2);