mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 16:11:15 +01:00
e34c1ca4be
It required converting mocha tests code into async since [@wdio/sync is deprecated](https://webdriver.io/docs/sync-vs-async/) starting with node v16. It removed the dependency on fibers and on [node-gyp + python](https:// webdriver.io/docs/sync-vs-async/#common-issues-in-sync-mode) indirectly though which is a great thing. Also moved away from node-sass to sass since [node-sass is deprecated] (https://sass-lang.com/blog/libsass-is-deprecated).
56 lines
1.7 KiB
JavaScript
56 lines
1.7 KiB
JavaScript
var assert = require("assert");
|
|
var wd = require("../../wd-helper");
|
|
|
|
|
|
describe("keyboard", function() {
|
|
describe("shortcuts", function() {
|
|
it("ESC should unfocus", async function() {
|
|
const tmpTargetEl = await $(wd.$("nav:inspect") + " select");
|
|
await tmpTargetEl.click();
|
|
assert(await tmpTargetEl.isFocused());
|
|
|
|
await browser.keys(["Escape"]);
|
|
assert(await (await $("body")).isFocused());
|
|
});
|
|
|
|
it("'?' should show shortcuts modal", async function() {
|
|
await browser.keys(["?"]);
|
|
assert(await (await $(wd.$("modal:shortcuts"))).isDisplayed());
|
|
});
|
|
|
|
it("'o' should show open modal", async function() {
|
|
await browser.keys(["o"]);
|
|
assert(await (await $(wd.$("modal:open"))).isDisplayed());
|
|
});
|
|
|
|
it("'e' should show export modal", async function() {
|
|
await browser.keys(["e"]);
|
|
assert(await (await $(wd.$("modal:export"))).isDisplayed());
|
|
});
|
|
|
|
it("'d' should show sources modal", async function() {
|
|
await browser.keys(["d"]);
|
|
assert(await (await $(wd.$("modal:sources"))).isDisplayed());
|
|
});
|
|
|
|
it("'s' should show settings modal", async function() {
|
|
await browser.keys(["s"]);
|
|
assert(await (await $(wd.$("modal:settings"))).isDisplayed());
|
|
});
|
|
|
|
it.skip("'i' should change map to inspect mode", async function() {
|
|
// await browser.keys(["i"]);
|
|
});
|
|
|
|
it("'m' should focus map", async function() {
|
|
await browser.keys(["m"]);
|
|
assert(await (await $(".mapboxgl-canvas")).isFocused());
|
|
});
|
|
|
|
it("'!' should show debug modal", async function() {
|
|
await browser.keys(["!"]);
|
|
assert(await (await $(wd.$("modal:debug"))).isDisplayed());
|
|
});
|
|
});
|
|
|
|
});
|