Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
nnaydenow committed Sep 2, 2024
1 parent 7f7fd6b commit 48530e7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/main/test/specs/ComboBox.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1040,11 +1040,17 @@ describe("Keyboard navigation", async () => {
const nextCombo = await browser.$("#combobox-two-column-layout");

await arrow.click();

assert.strictEqual(await combo.getProperty("focused"), true, "The next combobox should be focused");

await combo.keys("Tab");

assert.strictEqual(await nextCombo.getProperty("focused"), true, "The next combobox should be focused");

await arrow.click();

assert.strictEqual(await combo.getProperty("focused"), true, "The next combobox should be focused");

await browser.keys(["Shift", "Tab"]);

assert.strictEqual(await prevCombo.getProperty("focused"), true, "The previous combobox should be focused");
Expand Down

0 comments on commit 48530e7

Please sign in to comment.