diff options
author | Shin'ya UEOKA <ueokande@i-beam.org> | 2019-10-01 13:09:55 +0000 |
---|---|---|
committer | Shin'ya UEOKA <ueokande@i-beam.org> | 2019-10-01 13:21:58 +0000 |
commit | cb08141a55e9f067f73f3d9c387c6af5bb05b608 (patch) | |
tree | 6d1ed59cde68ff0cb721e6ac0d3c9554a07bc2bf /e2e/completion.test.ts | |
parent | 5291c4cca1da50bba89da9dd4fe6c1a14eb1fc97 (diff) |
Fix completion 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 28c1913..afa4432 100644 --- a/e2e/completion.test.ts +++ b/e2e/completion.test.ts @@ -40,7 +40,7 @@ describe("general completion test", () => { let console = await page.showConsole(); let items = await console.getCompletions(); - assert.strictEqual(items.length, 10); + assert.strictEqual(items.length, 11); assert.deepStrictEqual(items[0], { type: 'title', text: 'Console Command' }); assert.ok(items[1].text.startsWith('set')) assert.ok(items[2].text.startsWith('open')) |