Fix tests, types, added data-wd-key

This commit is contained in:
HarelM
2023-12-19 23:44:35 +02:00
parent 84adbe6eb2
commit 3ba3a20848
14 changed files with 1124 additions and 1313 deletions
+3 -3
View File
@@ -11,7 +11,7 @@ describe("accessibility", () => {
it("skip link to layer list", () => {
const selector = "root:skip:layer-list";
should.isExists(selector);
should.exist(selector);
when.tab();
should.beFocused(selector);
when.click(selector);
@@ -20,7 +20,7 @@ describe("accessibility", () => {
it("skip link to layer editor", () => {
const selector = "root:skip:layer-editor";
should.isExists(selector);
should.exist(selector);
when.tab().tab();
should.beFocused(selector);
when.click(selector);
@@ -29,7 +29,7 @@ describe("accessibility", () => {
it("skip link to map view", () => {
const selector = "root:skip:map-view";
should.isExists(selector);
should.exist(selector);
when.tab().tab().tab();
should.beFocused(selector);
when.click(selector);