From 684de531430336671b2e3bdc8ba40cb4cfba076e Mon Sep 17 00:00:00 2001 From: Yui T Date: Wed, 24 Sep 2014 14:51:23 -0700 Subject: [PATCH] Address code review : add test case for inside ambient module declaration and single quote --- .../fourslash/completionListWithAmbientDeclaration.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tests/cases/fourslash/completionListWithAmbientDeclaration.ts b/tests/cases/fourslash/completionListWithAmbientDeclaration.ts index fd00daab82d..afb5d96fbb7 100644 --- a/tests/cases/fourslash/completionListWithAmbientDeclaration.ts +++ b/tests/cases/fourslash/completionListWithAmbientDeclaration.ts @@ -2,8 +2,14 @@ //// declare module "http" { //// var x; +//// /*1*/ //// } -//// /**/ +//// declare module 'https' { +//// } +//// /*2*/ -goTo.marker(); +goTo.marker("1"); verify.not.completionListContains("http"); +goTo.marker("2"); +verify.not.completionListContains("http"); +verify.not.completionListContains("https");