fix failing test

This commit is contained in:
shelly_goldblit
2023-12-31 11:08:06 +02:00
parent 79b36efbdb
commit ba201935a8

View File

@@ -14,7 +14,7 @@ describe("accessibility", () => {
const selector = "root:skip:layer-list";
then(get.elementByTestId(selector)).shouldExist();
when.tab();
then(get.skipTargetLayerList()).shouldBeFocused();
then(get.elementByTestId(selector)).shouldBeFocused();
when.click(selector);
then(get.skipTargetLayerList()).shouldBeFocused();
});