A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.8 KiB
73 lines
1.8 KiB
7 years ago
|
import { expect } from "chai";
|
||
|
import * as windows from "../ambassador/src/client/windows";
|
||
|
import * as tabs from "../ambassador/src/client/tabs";
|
||
|
import * as keys from "../ambassador/src/client/keys";
|
||
|
|
||
|
const SERVER_URL = "localhost:11111/";
|
||
|
|
||
|
describe("tab test", () => {
|
||
|
let targetWindow;
|
||
|
let targetTab;
|
||
|
|
||
|
before(() => {
|
||
|
return windows.create(SERVER_URL).then((win) => {
|
||
|
targetWindow = win;
|
||
|
});
|
||
|
});
|
||
|
|
||
|
after(() => {
|
||
|
return windows.remove(targetWindow.id);
|
||
|
});
|
||
|
|
||
|
beforeEach(() => {
|
||
|
return tabs.create(targetWindow.id, SERVER_URL).then((tab) => {
|
||
|
targetTab = tab;
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('zooms-in by zi', () => {
|
||
|
let before;
|
||
|
return tabs.getZoom(targetTab.id).then((zoom) => {
|
||
|
before = zoom;
|
||
|
return keys.press(targetTab.id, 'z');
|
||
|
}).then(() => {
|
||
|
return keys.press(targetTab.id, 'i');
|
||
|
}).then(() => {
|
||
|
return tabs.getZoom(targetTab.id);
|
||
|
}).then((actual) => {
|
||
|
expect(actual).to.be.greaterThan(before);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('zooms-in by zo', () => {
|
||
|
let before;
|
||
|
return tabs.getZoom(targetTab.id).then((zoom) => {
|
||
|
before = zoom;
|
||
|
return keys.press(targetTab.id, 'z');
|
||
|
}).then(() => {
|
||
|
return keys.press(targetTab.id, 'o');
|
||
|
}).then(() => {
|
||
|
return tabs.getZoom(targetTab.id);
|
||
|
}).then((actual) => {
|
||
|
expect(actual).to.be.lessThan(before);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('zooms-in by zz', () => {
|
||
|
let before;
|
||
|
tabs.setZoom(targetTab.id, 1.5).then(() => {
|
||
|
return tabs.getZoom(targetTab.id);
|
||
|
}).then((zoom) => {
|
||
|
before = zoom;
|
||
|
return keys.press(targetTab.id, 'z');
|
||
|
}).then(() => {
|
||
|
return keys.press(targetTab.id, 'z');
|
||
|
}).then(() => {
|
||
|
return tabs.getZoom(targetTab.id);
|
||
|
}).then((actual) => {
|
||
|
expect(actual).to.be.lessThan(before);
|
||
|
expect(actual).to.be.be(1);
|
||
|
});
|
||
|
});
|
||
|
});
|