diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 16:53:33 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 16:53:33 +0900 |
commit | 0a5d968f0e371294da1afe69421c67a309f19551 (patch) | |
tree | a2ac6fa74a51ddcf16d048793083d67165b6c490 /e2e | |
parent | 65fedca9dfc4b85acce85b9eb3272cfc76d112a7 (diff) |
Fix e2e test
Diffstat (limited to 'e2e')
-rw-r--r-- | e2e/completion_set.test.ts | 3 |
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")); }); }); |