TypeScript/tests/cases/fourslash/server/formatOnEnter.ts
2016-05-31 14:11:39 -07:00

17 lines
No EOL
409 B
TypeScript

/// <reference path="fourslash.ts"/>
/////*3*/function listAPIFiles (path : string): string[] {
//// /*1*/
//// /*2*/
////}
goTo.marker("1");
format.onType("1", "\n");
verify.currentLineContentIs(" ");
goTo.marker("2");
format.onType("2", "\n");
verify.currentLineContentIs(" ");
goTo.marker("3");
verify.currentLineContentIs("function listAPIFiles(path: string): string[] {");