Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated Unit Test Formatting for #2747
Signed-off-by: DCoomer <20802896+DCoomer@users.noreply.github.com>
  • Loading branch information
DCoomer authored Dec 26, 2024
commit 617b982bf32c2c1170d74512a097e16a7aa6004c
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