Skip to content

Commit

Permalink
tests!
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy committed Jun 15, 2023
1 parent 1d77caa commit 9c87f3a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/cases/fourslash/completionEntryForConst.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
///<reference path="fourslash.ts" />

//@Filename
////const c = "s";
/////*1*/
////const d = 1
/////*2*/
////d/*2*/
////const e = 1
/////*3*/

verify.completions({ marker: ["1"], includes: { name: "c", text: 'const c: "s"', kind: "const" } });
verify.completions({ marker: ["2"], includes: { name: "d", text: 'const d: 1', kind: "const" } });
verify.completions({ marker: ["3"], includes: { name: "e", text: 'const e: 1', kind: "const" } });

0 comments on commit 9c87f3a

Please sign in to comment.