aboutsummaryrefslogtreecommitdiff
path: root/e2e/completion_set.test.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-05-04 17:50:42 +0900
committerGitHub <noreply@github.com>2020-05-04 17:50:42 +0900
commit69b6894b1997a773678709a7cd591afddc15c8ce (patch)
tree07e4c665829236e733316ae6f2684fe03b0a6781 /e2e/completion_set.test.ts
parent49addd75b76f185c9dad5d74e44e39cbea360510 (diff)
parent44ff8e449dba0de32500da3c3f17fc1361449717 (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.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"));
});
});