From 5c21495bd33149380f0c20f43a8957b5e837c82e Mon Sep 17 00:00:00 2001 From: Lorenzo Tinfena Date: Tue, 1 Nov 2022 20:16:40 +0100 Subject: [PATCH] Update test.ts --- src/commands/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/test.ts b/src/commands/test.ts index d070c9aa..f9f8aaa5 100644 --- a/src/commands/test.ts +++ b/src/commands/test.ts @@ -57,7 +57,7 @@ export async function testSolution(uri?: vscode.Uri): Promise { const testString: string | undefined = await vscode.window.showInputBox({ prompt: "Enter the test cases.", validateInput: (s: string): string | undefined => s && s.trim() ? undefined : "Test case must not be empty.", - placeHolder: "Example: [1,2,3]\\n4", + placeHolder: "Example: \"Hello\"\\n[1,2,3]\\n4", ignoreFocusOut: true, }); if (testString) {