aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--e2e/completion_set.test.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/e2e/completion_set.test.ts b/e2e/completion_set.test.ts
index 3a139fe..0a45ed3 100644
--- a/e2e/completion_set.test.ts
+++ b/e2e/completion_set.test.ts
@@ -34,12 +34,13 @@ describe("completion on set commands", () => {
await eventually(async () => {
const items = await console.getCompletions();
- assert.strictEqual(items.length, 5);
+ assert.strictEqual(items.length, 6);
assert.deepStrictEqual(items[0], { type: "title", text: "Properties" });
assert.ok(items[1].text.startsWith("hintchars"));
assert.ok(items[2].text.startsWith("smoothscroll"));
assert.ok(items[3].text.startsWith("nosmoothscroll"));
assert.ok(items[4].text.startsWith("complete"));
+ assert.ok(items[5].text.startsWith("colorscheme"));
});
});