diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 17:50:42 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-04 17:50:42 +0900 |
commit | 69b6894b1997a773678709a7cd591afddc15c8ce (patch) | |
tree | 07e4c665829236e733316ae6f2684fe03b0a6781 /e2e/completion_set.test.ts | |
parent | 49addd75b76f185c9dad5d74e44e39cbea360510 (diff) | |
parent | 44ff8e449dba0de32500da3c3f17fc1361449717 (diff) |
Merge pull request #751 from ueokande/dark-mode
Supports dark mode
Diffstat (limited to 'e2e/completion_set.test.ts')
-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")); }); }); |