Skip to content

Commit 085cabf

Browse files
committed
Change test untill we have filtering on location
1 parent aa571ff commit 085cabf

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

tests/cases/fourslash/completionListInExtendsClause.ts

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,15 @@
1818

1919
////interface test4 implements Foo./*4*/ {}
2020

21-
test.markers().forEach((marker) => {
22-
goTo.position(marker.position, marker.fileName);
21+
goTo.marker("1");
22+
verify.completionListIsEmpty();
2323

24-
verify.completionListIsEmpty();
25-
});
24+
goTo.marker("2");
25+
verify.completionListIsEmpty();
26+
27+
goTo.marker("3");
28+
verify.completionListIsEmpty();
29+
30+
// This needs comletion list filtering based on location to work
31+
goTo.marker("4");
32+
verify.not.completionListIsEmpty();

0 commit comments

Comments
 (0)