Skip to content

Commit

Permalink
fix: e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron committed Sep 5, 2023
1 parent 6ebe60e commit 126fa5b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/e2e/002-walletFeatures.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,13 @@ test.describe("Wallet features", () => {

await (await findByText($document, "Wallet")).click();
page.waitForSelector("button");
// create invoice

// goto: receive
await (await findByText($document, "Receive")).click();

// goto: receive via lightning invoice
await (await findByText($document, "Lightning invoice")).click();

const amountField = await getByLabelText($document, "Amount");
await amountField.type("888");

Expand Down

0 comments on commit 126fa5b

Please sign in to comment.