aboutsummaryrefslogtreecommitdiff
path: root/e2e/command_addbookmark.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'e2e/command_addbookmark.test.ts')
-rw-r--r--e2e/command_addbookmark.test.ts47
1 files changed, 25 insertions, 22 deletions
diff --git a/e2e/command_addbookmark.test.ts b/e2e/command_addbookmark.test.ts
index a54c103..4142e68 100644
--- a/e2e/command_addbookmark.test.ts
+++ b/e2e/command_addbookmark.test.ts
@@ -1,51 +1,54 @@
-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 eventually from './eventually';
-import { Builder, Lanthan } from 'lanthan';
-import { WebDriver } from 'selenium-webdriver';
-import Page from './lib/Page';
+import TestServer from "./lib/TestServer";
+import eventually from "./eventually";
+import { Builder, Lanthan } from "lanthan";
+import { WebDriver } from "selenium-webdriver";
+import Page from "./lib/Page";
-describe('addbookmark command test', () => {
- const server = new TestServer().receiveContent('/happy', `
+describe("addbookmark command test", () => {
+ const server = new TestServer().receiveContent(
+ "/happy",
+ `
<!DOCTYPE html>
- <html lang="en"><head><title>how to be happy</title></head></html>`,
+ <html lang="en"><head><title>how to be happy</title></head></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();
});
- after(async() => {
+ after(async () => {
await server.stop();
if (lanthan) {
await lanthan.quit();
}
});
- beforeEach(async() => {
- await webdriver.navigate().to(server.url('/happy'));
+ beforeEach(async () => {
+ await webdriver.navigate().to(server.url("/happy"));
});
- it('should add a bookmark from the current page', async() => {
+ it("should add a bookmark from the current page", async () => {
const page = await Page.currentContext(webdriver);
const console = await page.showConsole();
- await console.execCommand('addbookmark how to be happy');
+ await console.execCommand("addbookmark how to be happy");
- await eventually(async() => {
- const bookmarks = await browser.bookmarks.search({ title: 'how to be happy' });
+ await eventually(async () => {
+ const bookmarks = await browser.bookmarks.search({
+ title: "how to be happy",
+ });
assert.strictEqual(bookmarks.length, 1);
- assert.strictEqual(bookmarks[0].url, server.url('/happy'));
+ assert.strictEqual(bookmarks[0].url, server.url("/happy"));
});
});
});