We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4609d24 commit d9829f4Copy full SHA for d9829f4
1 file changed
tests/cases/fourslash/formattingTemplates.ts
@@ -1,7 +1,12 @@
1
///<reference path="fourslash.ts"/>
2
3
////String.call `${123}`/*1*/
4
+////String.call `${123} ${456}`/*2*/
5
6
goTo.marker("1");
7
edit.insert(";");
-verify.currentLineContentIs("String.call `${123}`;");
8
+verify.currentLineContentIs("String.call `${123}`;");
9
+
10
+goTo.marker("2");
11
+edit.insert(";");
12
+verify.currentLineContentIs("String.call `${123} ${456}`;");
0 commit comments