test(vscode): guard the Emmet mapping and auto-close setting

Also fix an unused-var lint failure in completion-scope.test.js blocking the production gate.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-18 21:36:20 +05:30
co-authored by Claude Opus 5
parent a8d8ac386f
commit 92c0920c9b
2 changed files with 17 additions and 2 deletions
+2 -2
View File
@@ -74,7 +74,7 @@ test("provideCompletionItems returns empty array when inside view block", () =>
getText() {
return PAGE;
},
offsetAt(position) {
offsetAt() {
return PAGE.indexOf("<div");
},
lineAt() {
@@ -94,7 +94,7 @@ test("provideCompletionItems returns non-empty array when inside functions block
getText() {
return PAGE;
},
offsetAt(position) {
offsetAt() {
return PAGE.indexOf("function go");
},
lineAt() {