feat: move wallet.html to vue component. FINAL DynamicComponent pr (#3559)

This commit is contained in:
dni ⚡ 2025-11-25 11:45:53 +01:00 committed by GitHub
parent 0c6e8394c8
commit 33e2fc2ea8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 928 additions and 1128 deletions

View file

@ -25,13 +25,6 @@ async def test_get_wallet_with_user_and_wallet(client, to_user, to_wallet):
assert response.status_code == 200, f"{response.url} {response.status_code}"
# check GET /wallet: wrong wallet and user, expect 400
@pytest.mark.anyio
async def test_get_wallet_with_user_and_wrong_wallet(client, to_user):
response = await client.get("wallet", params={"usr": to_user.id, "wal": "1"})
assert response.status_code == 400, f"{response.url} {response.status_code}"
# check GET /extensions: extensions list
@pytest.mark.anyio
async def test_get_extensions(client, to_user):