Skip to content

Commit

Permalink
Updated Unit Test Formatting for #2747
Browse files Browse the repository at this point in the history
Signed-off-by: DCoomer <20802896+DCoomer@users.noreply.github.com>
  • Loading branch information
DCoomer authored Dec 26, 2024
1 parent d5570ac commit 617b982
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions test/unit-tests/click.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,16 @@ describe(test_name, () => {

describe("With proximity selector and Options Object", () => {
it("should click", async () => {
await click("Click with proximity", {waitForNavigation: true}, below("Proximity marker"));
expect(await text("Click works with proximity selector and Options Object.").exists()).to.be
.true;
await click(
"Click with proximity",
{ waitForNavigation: true },
below("Proximity marker"),
);
expect(
await text(
"Click works with proximity selector and Options Object."
).exists()
).to.be.true;
});
});

Expand Down

0 comments on commit 617b982

Please sign in to comment.