From 0a5d968f0e371294da1afe69421c67a309f19551 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Mon, 4 May 2020 16:53:33 +0900 Subject: Fix e2e test --- e2e/completion_set.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'e2e/completion_set.test.ts') 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")); }); }); -- cgit v1.2.3