From 126fa5bbb8a99da9bbafa8fbc5eb7eb14c18ae0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Aaron?= Date: Tue, 5 Sep 2023 22:11:29 +0200 Subject: [PATCH] fix: e2e test --- tests/e2e/002-walletFeatures.spec.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/e2e/002-walletFeatures.spec.ts b/tests/e2e/002-walletFeatures.spec.ts index 419858f11e..21df85ee94 100644 --- a/tests/e2e/002-walletFeatures.spec.ts +++ b/tests/e2e/002-walletFeatures.spec.ts @@ -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");