Skip to content

Commit 684de53

Browse files
author
Yui T
committed
Address code review : add test case for inside ambient module declaration and single quote
1 parent 835d0ac commit 684de53

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/cases/fourslash/completionListWithAmbientDeclaration.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22

33
//// declare module "http" {
44
//// var x;
5+
//// /*1*/
56
//// }
6-
//// /**/
7+
//// declare module 'https' {
8+
//// }
9+
//// /*2*/
710

8-
goTo.marker();
11+
goTo.marker("1");
12+
verify.not.completionListContains("http");
13+
goTo.marker("2");
914
verify.not.completionListContains("http");
15+
verify.not.completionListContains("https");

0 commit comments

Comments
 (0)