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 48530e7 commit 56ed5b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/main/test/specs/ComboBox.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1041,15 +1041,15 @@ describe("Keyboard navigation", async () => {

await arrow.click();

assert.strictEqual(await combo.getProperty("focused"), true, "The next combobox should be focused");
assert.strictEqual(await combo.getProperty("focused"), true, "Initial 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");
assert.strictEqual(await combo.getProperty("focused"), true, "Initial combobox should be focused");

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

Expand Down

0 comments on commit 56ed5b5

Please sign in to comment.