aboutsummaryrefslogtreecommitdiff
path: root/e2e/command_help.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'e2e/command_help.test.ts')
-rw-r--r--e2e/command_help.test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/e2e/command_help.test.ts b/e2e/command_help.test.ts
index 20035fd..9f8a459 100644
--- a/e2e/command_help.test.ts
+++ b/e2e/command_help.test.ts
@@ -8,7 +8,7 @@ import { WebDriver } from 'selenium-webdriver';
import Page from './lib/Page';
describe("help command test", () => {
- let server = new TestServer();
+ const server = new TestServer();
let lanthan: Lanthan;
let webdriver: WebDriver;
let browser: any;
@@ -37,11 +37,11 @@ describe("help command test", () => {
});
it('should open help page by help command ', async() => {
- let console = await page.showConsole();
+ const console = await page.showConsole();
await console.execCommand('help');
await eventually(async() => {
- let tabs = await browser.tabs.query({ active: true });
+ const tabs = await browser.tabs.query({ active: true });
assert.strictEqual(tabs[0].url, 'https://ueokande.github.io/vim-vixen/')
});
});