Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dev-build test
Browse files Browse the repository at this point in the history
lmuntaner committed Nov 6, 2024

Verified

This commit was signed with the committer’s verified signature.
x1ah x1ah
1 parent 75083b2 commit ed3a513
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions demos/using-dev-build/specs/auth.e2e.ts
Original file line number Diff line number Diff line change
@@ -10,11 +10,12 @@ describe("authentication", () => {
await browser.$("#registerButton").click();

// Construct Identity (no-op)
const constructIdentity = await browser.$(
'[data-action="construct-identity"]'
);
await constructIdentity.waitForExist();
await constructIdentity.click();
// TODO: GIX-3138 Clean up after release
// const constructIdentity = await browser.$(
// '[data-action="construct-identity"]'
// );
// await constructIdentity.waitForExist();
// await constructIdentity.click();

await browser.$("h1").waitForExist();
const title = await browser.$("h1");

0 comments on commit ed3a513

Please sign in to comment.