From d9829f4635fa1ce98bf988c532d588ce29bd45af Mon Sep 17 00:00:00 2001 From: Vladimir Matveev Date: Fri, 14 Nov 2014 16:23:47 -0800 Subject: [PATCH] added more tests --- tests/cases/fourslash/formattingTemplates.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/cases/fourslash/formattingTemplates.ts b/tests/cases/fourslash/formattingTemplates.ts index 13bec473773..c7decd10316 100644 --- a/tests/cases/fourslash/formattingTemplates.ts +++ b/tests/cases/fourslash/formattingTemplates.ts @@ -1,7 +1,12 @@ /// ////String.call `${123}`/*1*/ +////String.call `${123} ${456}`/*2*/ goTo.marker("1"); edit.insert(";"); -verify.currentLineContentIs("String.call `${123}`;"); \ No newline at end of file +verify.currentLineContentIs("String.call `${123}`;"); + +goTo.marker("2"); +edit.insert(";"); +verify.currentLineContentIs("String.call `${123} ${456}`;"); \ No newline at end of file