From 5f428fefb01be666f536429e677a2089b60fbd41 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Wed, 25 Mar 2015 14:16:12 -0700 Subject: [PATCH] More tests. --- ...ompletionListAtBeginningOfIdentifierInArrowFunction01.ts | 6 ++++++ .../completionListInMiddleOfIdentifierInArrowFunction01.ts | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 tests/cases/fourslash/completionListAtBeginningOfIdentifierInArrowFunction01.ts create mode 100644 tests/cases/fourslash/completionListInMiddleOfIdentifierInArrowFunction01.ts diff --git a/tests/cases/fourslash/completionListAtBeginningOfIdentifierInArrowFunction01.ts b/tests/cases/fourslash/completionListAtBeginningOfIdentifierInArrowFunction01.ts new file mode 100644 index 00000000000..0562a5a4bd3 --- /dev/null +++ b/tests/cases/fourslash/completionListAtBeginningOfIdentifierInArrowFunction01.ts @@ -0,0 +1,6 @@ +/// + +////xyz => /*1*/x + +goTo.marker("1"); +verify.completionListContains("xyz"); \ No newline at end of file diff --git a/tests/cases/fourslash/completionListInMiddleOfIdentifierInArrowFunction01.ts b/tests/cases/fourslash/completionListInMiddleOfIdentifierInArrowFunction01.ts new file mode 100644 index 00000000000..c48e36c91c8 --- /dev/null +++ b/tests/cases/fourslash/completionListInMiddleOfIdentifierInArrowFunction01.ts @@ -0,0 +1,6 @@ +/// + +////xyz => x/*1*/y + +goTo.marker("1"); +verify.completionListContains("xyz"); \ No newline at end of file