From 68f6211aac4177f3a70a40031dabbd1b61840071 Mon Sep 17 00:00:00 2001 From: Shin'ya UEOKA Date: Tue, 8 Oct 2019 13:08:29 +0000 Subject: Clean e2e tests --- e2e/completion.test.ts | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) (limited to 'e2e/completion.test.ts') diff --git a/e2e/completion.test.ts b/e2e/completion.test.ts index afa4432..e98e1c2 100644 --- a/e2e/completion.test.ts +++ b/e2e/completion.test.ts @@ -2,7 +2,6 @@ import * as path from 'path'; import * as assert from 'assert'; import eventually from './eventually'; -import settings from './settings'; import { Builder, Lanthan } from 'lanthan'; import { WebDriver, Key } from 'selenium-webdriver'; import Page from './lib/Page'; @@ -10,7 +9,6 @@ import Page from './lib/Page'; describe("general completion test", () => { let lanthan: Lanthan; let webdriver: WebDriver; - let browser: any; let page: Page; before(async() => { @@ -19,11 +17,6 @@ describe("general completion test", () => { .spyAddon(path.join(__dirname, '..')) .build(); webdriver = lanthan.getWebDriver(); - browser = lanthan.getWebExtBrowser(); - - await browser.storage.local.set({ - settings, - }); }); after(async() => { @@ -42,8 +35,8 @@ describe("general completion test", () => { let items = await console.getCompletions(); 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')) + assert.ok(items[1].text.startsWith('set')); + assert.ok(items[2].text.startsWith('open')); assert.ok(items[3].text.startsWith('tabopen')) }); @@ -54,8 +47,8 @@ describe("general completion test", () => { let items = await console.getCompletions(); assert.strictEqual(items.length, 4); assert.deepStrictEqual(items[0], { type: 'title', text: 'Console Command' }); - assert.ok(items[1].text.startsWith('buffer')) - assert.ok(items[2].text.startsWith('bdelete')) + assert.ok(items[1].text.startsWith('buffer')); + assert.ok(items[2].text.startsWith('bdelete')); assert.ok(items[3].text.startsWith('bdeletes')) }); @@ -74,14 +67,14 @@ describe("general completion test", () => { await console.sendKeys(Key.TAB); await eventually(async() => { let items = await console.getCompletions(); - assert.ok(items[1].highlight) + assert.ok(items[1].highlight); assert.strictEqual(await console.currentValue(), 'buffer'); }); await console.sendKeys(Key.TAB, Key.TAB); await eventually(async() => { let items = await console.getCompletions(); - assert.ok(items[3].highlight) + assert.ok(items[3].highlight); assert.strictEqual(await console.currentValue(), 'bdeletes'); }); @@ -93,7 +86,7 @@ describe("general completion test", () => { await console.sendKeys(Key.SHIFT, Key.TAB); await eventually(async() => { let items = await console.getCompletions(); - assert.ok(items[3].highlight) + assert.ok(items[3].highlight); assert.strictEqual(await console.currentValue(), 'bdeletes'); }); }); -- cgit v1.2.3