Skip to content
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
16ec2bc
add initial version of linearize send flow
leofelix077 May 11, 2026
b2246b5
fix input handling for decimal amounts
leofelix077 May 11, 2026
d151993
adjust layouting for send flow
leofelix077 May 11, 2026
119c0e8
rewrite sendpayment tests
leofelix077 May 11, 2026
309e590
fix UI according to figma design
leofelix077 May 11, 2026
e64eb2d
bring Ui in line with mobile
leofelix077 May 12, 2026
768acf9
fix amount formatting on base usd value
leofelix077 May 12, 2026
ba7d7cf
adjust navigation flows for send and collectible flows and add e2e tests
leofelix077 May 13, 2026
03e09be
keep recents on search and add debounce
leofelix077 May 13, 2026
4326a2c
preserve amounts between swap of fiat and token
leofelix077 May 13, 2026
2fec35e
update input validation and navigation on changes
leofelix077 May 13, 2026
87d6271
Merge branch 'master' into feature/linearize-send-flow
leofelix077 May 13, 2026
09fec92
fix debounce, unused strings and navigation flow for suggestions
leofelix077 May 13, 2026
cb9fc71
Merge branch 'feature/linearize-send-flow' of https://github.com/stel…
leofelix077 May 13, 2026
ae763e9
add tests for amount preservation toggle between fiat and token
leofelix077 May 13, 2026
bce720b
add tests for amount preservation toggle between fiat and token
leofelix077 May 13, 2026
7cdb65f
remove duplicated tests for memo editing context
leofelix077 May 14, 2026
41188cf
adjust e2e tests to new send flow and minor UI elements
leofelix077 May 14, 2026
c8c968f
adjust comments from agentic code review
leofelix077 May 14, 2026
d281820
update loading state for search
leofelix077 May 14, 2026
29c7d15
fix load account failing test
leofelix077 May 14, 2026
d11ef2f
wait for search to settle to allow continue
leofelix077 May 14, 2026
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
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ test("Send token payment to C address", async ({

await expect(page.getByTestId("send-amount-amount-input")).toBeVisible();

await page.locator(".SendAmount__EditDestAsset").click();
await page.getByTestId("send-amount-edit-dest-asset").click();

await page.getByText("E2E").click();

Expand Down
8 changes: 4 additions & 4 deletions extension/e2e-tests/memo.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ test("Send custom token without Soroban mux support to G address disables memo",
});

// Select custom token
await page.locator(".SendAmount__EditDestAsset").click();
await page.getByTestId("send-amount-edit-dest-asset").click();
await page
.getByTestId(`SendRow-E2E:${TEST_TOKEN_ADDRESS}`)
.click({ force: true });
Expand Down Expand Up @@ -635,7 +635,7 @@ test("Send custom token without Soroban mux support to M address is disabled", a
await expect(page.getByTestId("send-amount-amount-input")).toBeVisible();

// Select custom token
await page.locator(".SendAmount__EditDestAsset").click();
await page.getByTestId("send-amount-edit-dest-asset").click();
await page
.getByTestId(`SendRow-E2E:${TEST_TOKEN_ADDRESS}`)
.click({ force: true });
Expand Down Expand Up @@ -685,7 +685,7 @@ test("Send custom token with Soroban mux support to G address allows memo", asyn
await expect(page.getByTestId("send-amount-amount-input")).toBeVisible();

// Select custom token
await page.locator(".SendAmount__EditDestAsset").click();
await page.getByTestId("send-amount-edit-dest-asset").click();
await page
.getByTestId(`SendRow-E2E:${TEST_TOKEN_ADDRESS}`)
.click({ force: true });
Expand Down Expand Up @@ -749,7 +749,7 @@ test("Send custom token with Soroban mux support to M address disables memo", as
await expect(page.getByTestId("send-amount-amount-input")).toBeVisible();

// Select custom token
await page.locator(".SendAmount__EditDestAsset").click();
await page.getByTestId("send-amount-edit-dest-asset").click();
await page
.getByTestId(`SendRow-E2E:${TEST_TOKEN_ADDRESS}`)
.click({ force: true });
Expand Down
Loading
Loading