diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-03-28 21:50:20 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-03-28 21:50:20 +0900 |
commit | 43f0f17cf7992cbe02040981f0b61dcd6437851c (patch) | |
tree | 9ec67856f6e183985ef434d9f6e444088e051523 /e2e/completion.test.ts | |
parent | df82fac78fbc2541fcd60a6daf0ccbb7809260d1 (diff) |
Fix e2e test
Diffstat (limited to 'e2e/completion.test.ts')
-rw-r--r-- | e2e/completion.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e2e/completion.test.ts b/e2e/completion.test.ts index dd4477f..1ce430e 100644 --- a/e2e/completion.test.ts +++ b/e2e/completion.test.ts @@ -33,7 +33,7 @@ describe("general completion test", () => { const console = await page.showConsole(); const items = await console.getCompletions(); - assert.strictEqual(items.length, 11); + assert.strictEqual(items.length, 12); assert.deepStrictEqual(items[0], { type: 'title', text: 'Console Command' }); assert.ok(items[1].text.startsWith('set')); assert.ok(items[2].text.startsWith('open')); |