aboutsummaryrefslogtreecommitdiff
path: root/e2e/partial_blacklist.test.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-04-13 20:37:36 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2020-04-13 20:37:36 +0900
commite1dac618a8b8929f601c7ec8aca3842c5ebf9d03 (patch)
tree6a914a8243c8c02e7752a83667a54d3fa832955c /e2e/partial_blacklist.test.ts
parent685f2b7b69218b06b5bb676069e35f79c5048c9b (diff)
Use plugin:prettier/recommended
Diffstat (limited to 'e2e/partial_blacklist.test.ts')
-rw-r--r--e2e/partial_blacklist.test.ts58
1 files changed, 29 insertions, 29 deletions
diff --git a/e2e/partial_blacklist.test.ts b/e2e/partial_blacklist.test.ts
index cb66549..8bc1c0e 100644
--- a/e2e/partial_blacklist.test.ts
+++ b/e2e/partial_blacklist.test.ts
@@ -1,57 +1,57 @@
-import * as path from 'path';
-import * as assert from 'assert';
+import * as path from "path";
+import * as assert from "assert";
-import TestServer from './lib/TestServer';
-import { Builder, Lanthan } from 'lanthan';
-import { WebDriver } from 'selenium-webdriver';
-import Page from './lib/Page';
-import Settings from '../src/shared/settings/Settings';
-import SettingRepository from './lib/SettingRepository';
+import TestServer from "./lib/TestServer";
+import { Builder, Lanthan } from "lanthan";
+import { WebDriver } from "selenium-webdriver";
+import Page from "./lib/Page";
+import Settings from "../src/shared/settings/Settings";
+import SettingRepository from "./lib/SettingRepository";
describe("partial blacklist test", () => {
- const server = new TestServer().receiveContent('/*',
- `<!DOCTYPE html><html lang="en"><body style="width:10000px; height:10000px"></body></html>`,
+ const server = new TestServer().receiveContent(
+ "/*",
+ `<!DOCTYPE html><html lang="en"><body style="width:10000px; height:10000px"></body></html>`
);
let lanthan: Lanthan;
let webdriver: WebDriver;
let browser: any;
- before(async() => {
- lanthan = await Builder
- .forBrowser('firefox')
- .spyAddon(path.join(__dirname, '..'))
+ before(async () => {
+ lanthan = await Builder.forBrowser("firefox")
+ .spyAddon(path.join(__dirname, ".."))
.build();
webdriver = lanthan.getWebDriver();
browser = lanthan.getWebExtBrowser();
await server.start();
- const url = server.url().replace('http://', '');
- await new SettingRepository(browser).saveJSON(Settings.fromJSON({
- keymaps: {
- j: { type: 'scroll.vertically', count: 1 },
- k: { type: 'scroll.vertically', count: -1 },
- },
- blacklist: [
- { 'url': url, 'keys': ['k'] }
- ]
- }));
+ const url = server.url().replace("http://", "");
+ await new SettingRepository(browser).saveJSON(
+ Settings.fromJSON({
+ keymaps: {
+ j: { type: "scroll.vertically", count: 1 },
+ k: { type: "scroll.vertically", count: -1 },
+ },
+ blacklist: [{ url: url, keys: ["k"] }],
+ })
+ );
});
- after(async() => {
+ after(async () => {
await server.stop();
if (lanthan) {
await lanthan.quit();
}
});
- it('should disable keys in the partial blacklist', async () => {
- const page = await Page.navigateTo(webdriver, server.url('/'));
+ it("should disable keys in the partial blacklist", async () => {
+ const page = await Page.navigateTo(webdriver, server.url("/"));
- await page.sendKeys('j');
+ await page.sendKeys("j");
let scrollY = await page.getScrollY();
assert.strictEqual(scrollY, 64);
- await page.sendKeys('k');
+ await page.sendKeys("k");
scrollY = await page.getScrollY();
assert.strictEqual(scrollY, 64);
});