Skip to content

Commit 493ec4c

Browse files
author
Ikko Ashimine
authored
Fix typo in host.ts (microsoft#43930)
encounted -> encountered
1 parent 4990bd9 commit 493ec4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/testRunner/parallel/host.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ namespace Harness.Parallel.Host {
285285
worker.process.on("message", (data: ParallelClientMessage) => {
286286
switch (data.type) {
287287
case "error": {
288-
console.error(`Test worker encounted unexpected error${data.payload.name ? ` during the execution of test ${data.payload.name}` : ""} and was forced to close:
288+
console.error(`Test worker encountered unexpected error${data.payload.name ? ` during the execution of test ${data.payload.name}` : ""} and was forced to close:
289289
Message: ${data.payload.error}
290290
Stack: ${data.payload.stack}`);
291291
return process.exit(2);

0 commit comments

Comments
 (0)