aboutsummaryrefslogtreecommitdiff
path: root/e2e/tab.test.js
diff options
context:
space:
mode:
authorchocolateboy <chocolate@cpan.org>2019-07-31 15:01:06 +0100
committerchocolateboy <chocolate@cpan.org>2019-07-31 15:02:21 +0100
commit9a3e8f323797e693c6a5b2d09b1c1b753c8ee5ba (patch)
treeeb434c46e86b16836d06aaf9943fe28b7a2fe8b8 /e2e/tab.test.js
parent6605d3ea99c364a8f5f9d98a33e3ac89afb035f7 (diff)
tabs.close.right: rename `gd` -> `x$`
Diffstat (limited to 'e2e/tab.test.js')
-rw-r--r--e2e/tab.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/e2e/tab.test.js b/e2e/tab.test.js
index aaaa5d7..c82890e 100644
--- a/e2e/tab.test.js
+++ b/e2e/tab.test.js
@@ -77,10 +77,10 @@ describe("tab test", () => {
assert(current[2].url === tabs[2].url);
});
- it('deletes all tabs to the right by gD', async () => {
+ it('deletes all tabs to the right by x$', async () => {
await browser.tabs.update(tabs[1].id, { active: true });
let body = await session.findElementByCSS('body');
- await body.sendKeys('g', Key.Shift, 'D');
+ await body.sendKeys('x', '$');
let current = await browser.tabs.query({ windowId: win.id });
assert(current.length === 2);