TypeScript/tests/cases/fourslash/formattingTemplates.ts

12 lines
303 B
TypeScript
Raw Normal View History

2014-11-14 23:36:52 +01:00
///<reference path="fourslash.ts"/>
////String.call `${123}`/*1*/
2014-11-15 01:23:47 +01:00
////String.call `${123} ${456}`/*2*/
2014-11-14 23:36:52 +01:00
goTo.marker("1");
edit.insert(";");
2014-11-15 01:23:47 +01:00
verify.currentLineContentIs("String.call `${123}`;");
goTo.marker("2");
edit.insert(";");
verify.currentLineContentIs("String.call `${123} ${456}`;");